function
Posted:
Tue Feb 14, 2012 6:44 am
by raminkhan
i just made a function in global code, how can I use it in my script editor?
Re: function
Posted:
Tue Feb 14, 2012 7:06 am
by skydereign
Call the function.
Global Code
- Code: Select all
void
function ()
{
//
}
Any Script
- Code: Select all
function();
You should know how to call functions, for example ChangeAnimation is a function.