App::appSetApp: Difference between revisions
(yay) |
(yay) |
||
| Line 1: | Line 1: | ||
Called in the gamescripts like:<br>APP::APP_SET_APP('car');<br>APP::APP_SET_APP('dog');==Syntax==<syntaxhighlight lang="javascript">app.appSetApp(appName);</syntaxhighlight>=== Required Arguments ===*'''appName:''' String===Return value===*'''Undefined'''==Example==<syntaxhighlight lang="javascript">todo</syntaxhighlight>==See also=={{App_function_c}}[[Category:Clientside API]][[Category:TODO: Example]] | Called in the gamescripts like:<br>APP::APP_SET_APP('car');<br>APP::APP_SET_APP('dog'); | ||
==Syntax== | |||
<syntaxhighlight lang="javascript">app.appSetApp(appName);</syntaxhighlight> | |||
=== Required Arguments === | |||
*'''appName:''' String | |||
===Return value=== | |||
*'''Undefined''' | |||
==Example== | |||
<syntaxhighlight lang="javascript"> | |||
todo | |||
</syntaxhighlight> | |||
==See also== | |||
{{App_function_c}} | |||
[[Category:Clientside API]] | |||
[[Category:TODO: Example]] | |||
Revision as of 19:54, 6 May 2017
Called in the gamescripts like:
APP::APP_SET_APP('car');
APP::APP_SET_APP('dog');
Syntax
app.appSetApp(appName);
Required Arguments
- appName: String
Return value
- Undefined
Example
todo