3DTextLabel question
#1

can I check to see if a 3DTextlabel exists example

Код:
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
}
Reply


Messages In This Thread
3DTextLabel question[solved] - by horsemeat - 25.03.2013, 22:09
Re: 3DTextLabel question - by kamzaf - 25.03.2013, 22:21
Re: 3DTextLabel question - by greentarch - 25.03.2013, 22:41
Re: 3DTextLabel question - by horsemeat - 25.03.2013, 22:58
Re: 3DTextLabel question - by Luis- - 25.03.2013, 22:59
Re: 3DTextLabel question - by horsemeat - 27.03.2013, 00:38
Re: 3DTextLabel question - by horsemeat - 27.03.2013, 00:47
Re: 3DTextLabel question - by Pottus - 27.03.2013, 00:52
Re: 3DTextLabel question - by horsemeat - 14.04.2013, 19:04

Forum Jump:


Users browsing this thread: 1 Guest(s)