Komut
text()
Açıklama
Biraz metin çizin, kontur () içinde ayarlanan kontur rengini ve arka plan () içinde ayarlanan arka plan rengini kullanır.
Sözdizimi
Ekranınız .text (dize)
Ekranınız .text (dize, x, y)
Parametreler
- string: çizilecek dize
- metnin başlangıcı için x: x konumu
- metnin başlangıcı için y: y konumu
İadeler
Hiçbir şey değil
Misal
…
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.stroke(255, 255, 255);
YourScreen.text("abc", 0, 1);
YourScreen.endDraw();
…
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.stroke(255, 255, 255);
YourScreen.text("abc", 0, 1);
YourScreen.endDraw();
…
See Also
- begin()
- end()
- width()
- height()
- beginDraw()
- endDraw()
- background()
- clear()
- fill()
- noFill()
- stroke()
- noStroke()
- line()
- point()
- rect()
- textFont()
- textFontWidth()
- textFontHeight()
- set()
- beginText()
- endText()
- textScrollSpeed()