by plinydogg » Thu Jun 01, 2006 10:09 pm
Novice,
I'm no expert but I think you're basically right.
I use void functions if I just need stuff done but don't need anything else
Ex:
void changeAnimation()
{
ChangeAnimation("actor", "picture", NO_CHANGE);
}
I use int functions if I need an integer value. You use "return" to tell the function what int to return.
Ex:
int checkLightStatus()
{
if(lightPosition.text == "on")
{
return 1;
}
else
{
return 0;
}
}
Then you can use the checkLightStatus() function in other scripts.
ex:
in the script editor of a mouse down event on an actor called lightSwitch...
if(checkLightStatus()==1)
{
strcpy("lightPosition.text", "off");
}
The int and void varieties are the only type of functions I use, so I can't comment on the others....