It is possible to register functions with defaults arguments and call them from the script.
Functions with default parameters
Started by pbody2012, Feb 19 2013 05:42 PM
2 replies to this topic
Sponsor:
#2 Moderators - Reputation: 2321
Posted 19 February 2013 - 06:05 PM
Yes, but you need to inform the default parameter value in the registration.
// C++
void func( int a, int b = 1 ) {}
// Registration with AngelScript
engine->RegisterGlobalFunction("void func(int, int b = 1)", asFUNCTION(func), asCALL_CDECL);
AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game






