You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In unity_engine.lua:_init(_ENV) You can define unity enums as a class and pass objects around of the enum types ("LighType","TouchPhase" comes into mind) however cannot adress each of the enumerators( In the case of of Touchphase: Began Moved Stationary Ended ...)
touchObj1.phase == touchObj2.phase --works
touchObj1.phase == TouchPhase.Began --dont work
The text was updated successfully, but these errors were encountered:
In unity_engine.lua:_init(_ENV) You can define unity enums as a class and pass objects around of the enum types ("LighType","TouchPhase" comes into mind) however cannot adress each of the enumerators( In the case of of Touchphase: Began Moved Stationary Ended ...)
touchObj1.phase == touchObj2.phase --works
touchObj1.phase == TouchPhase.Began --dont work
The text was updated successfully, but these errors were encountered: