It is possible to register functions with defaults arguments and call them from the script.
Functions with default parameters
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
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement