Hello~
I’m a Urho3d newbie :D.
I’m trying to make tweening script via angelscript.
My scripts’ class’ variable needs non built-in enum values.
(like enum LoopType { once, loop, yoyo }
I added enum value on c++ project using
asCScriptEngine::RegisterEnum(const char*)
asCScriptEngine::RegisterEnumValue(const char*, const char *, int)
functions and compiled angelscript successfully.
But I can’t edit in editor(invisible). I think because enum value isn’t serializable object.
What should I do?
Best regards