Hi,
Do you have any sample explaning callbacks and funcdefs?
Because I tried and still have crashes :-(
I try to register a callback with
r = engine->RegisterFuncdef("void OnCompleteHandler()");
and then a property with
r = engine->RegisterObjectProperty("Test", "OnCompleteHandler @onComplete", asOFFSET(Test, onCompleteHandler));
In my Test class I have a property declared this way :
asIScriptFunction *onCompleteHandler;
In my script I have a function