public static bool BeginMethod(int index, int baseClass, string methodName) { // set thread type to 1 so CScaleformMgr::BeginMethod adds the method call to the same queue as if it was done using natives long v = UsingTls.Get(0xB4); UsingTls.Set(0xB4, 1); bool b = InvokeRetBool(Memory.CScaleformMgr_BeginMethod, index, baseClass, methodName); UsingTls.Set(0xB4, v); return(b); }
public static bool IsMovieRendering(int index) { // CScaleformMgr::IsMovieRendering checks if the current thread is the render thread, // so temporarily set this thread type to the render thread type (2) // doesn't seem to cause any issue in this case long v = UsingTls.Get(0xB4); UsingTls.Set(0xB4, 2); bool b = InvokeRetBool(Memory.CScaleformMgr_IsMovieRendering, index); UsingTls.Set(0xB4, v); return(b); }