The v1 Runtime class had methods like
GetEventSheetManager();
GetCurrentEventStackFrame();
GetCurrentEvent();
Is it possible to expose this getter methods somewhere in SdkV2?
I just need to access the current frame condition index and the current event _sid
Develop games in your browser. Powerful, performant & highly capable.
also tried to instantiate an EventSheetManager with
var manager = new C3.EventSheetManager(this.runtime);
with no success since manager.GetCurrentEvent() returns null inside a condition's method.
Ashley could you help me out on this?
Nevermind, I found a workaround in my plugin logic so it does not need to know the current event running it.