diff --git a/stepmania/src/Actor.cpp b/stepmania/src/Actor.cpp index 665ec15665..3dcbb2a7b6 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -1384,6 +1384,7 @@ public: static int GetZoomY( T* p, lua_State *L ) { lua_pushnumber( L, p->GetZoomY() ); return 1; } static int GetZoomZ( T* p, lua_State *L ) { lua_pushnumber( L, p->GetZoomZ() ); return 1; } static int GetBaseZoomX( T* p, lua_State *L ) { lua_pushnumber( L, p->GetBaseZoomX() ); return 1; } + static int GetRotationY( T* p, lua_State *L ) { lua_pushnumber( L, p->GetRotationY() ); return 1; } static int GetSecsIntoEffect( T* p, lua_State *L ) { lua_pushnumber( L, p->GetSecsIntoEffect() ); return 1; } static int GetEffectDelta( T* p, lua_State *L ) { lua_pushnumber( L, p->GetEffectDelta() ); return 1; } static int GetDiffuseAlpha( T* p, lua_State *L ) { lua_pushnumber( L, p->GetDiffuseAlpha() ); return 1; } @@ -1510,6 +1511,7 @@ public: ADD_METHOD( GetZoomX ) ADD_METHOD( GetZoomY ) ADD_METHOD( GetZoomZ ) + ADD_METHOD( GetRotationY ) ADD_METHOD( GetBaseZoomX ) ADD_METHOD( GetSecsIntoEffect ) ADD_METHOD( GetEffectDelta )