3d text now showing - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: 3d text now showing (
/showthread.php?tid=500046)
3d text not showing -
Cassely1704 - 11.03.2014
I create 3DText but it's not showing, I don't see it.
WHY?!
I use streamer plugin 2.7
Код:
new Text3D:abcd;
abcd = CreateDynamic3DTextLabel("Test text", 0xFFFFFFFF, MY_CORDX, MY_CORDY, MY_CORDZ, 30.0, INVALID_PLAYER_ID,INVALID_VEHICLE_ID,1, MY_WORLD, MY_INT);
P.S. My cords, world and interior are correct.
Thanks before.
Respuesta: 3d text now showing -
SickAttack - 11.03.2014
pawn Код:
new Float: x, Float:y, Float:z;
GetPlayerPos(playerid, x,y,z);
new Text3D:label = Create3DTextLabel("THIS WORKS!", 0xFFFFFFFF, x, y, z, 40.0, 0, 0);