BitmapFont - dove si trova il metodo getBounds nella nuova versione 1.6 libGDX


Risposte:


13

C'è stato un post che spiega le modifiche, ma non è facile da trovare. Il link era sul log delle modifiche della versione 1.5.6: http://www.badlogicgames.com/wordpress/?p=3666

E il link sulle modifiche ai caratteri era: http://www.badlogicgames.com/wordpress/?p=3658

private static GlyphLayout glyphLayout = new GlyphLayout();
private BitmapFont fontA = new BitmapFont(), fontB = new BitmapFont();

// Set text and font each time you want to calculate bounds.
glyphLayout.setText(fontA, "my string");
fontA.draw(batch, glyphLayout, x + glyphLayout.width / 3, y + glyphLayout.height / 3);
y += glyphLayout.height;

glyphLayout.setText(fontB, "different font");
fontB.draw(batch, glyphLayout, x + glyphLayout.width / 3, y + glyphLayout.height / 3);
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.