25.03.2013, 22:09
(
Последний раз редактировалось horsemeat; 27.03.2013 в 00:51.
Причина: solved
)
can I check to see if a 3DTextlabel exists example
The Proper code to Check is
Код:
new Text3D:label; //...later label = Create3DTextLabel("text",GREEN,x,y,z,25.0,0,0) //later //is there a command that looks some what like this if(3DTextLabelExists(label))
Solved
The Proper code to Check is
Код:
new Text3D:label; //later label = Create3DTextLabel("text",GREEN,x,y,z,25.0,0,0) //later if(Text3D:label = Text3D:INVALID_3DTEXT_ID) { //code }