add GetRotationY

This commit is contained in:
Chris Danford
2005-08-18 06:15:04 +00:00
parent e30fcd571d
commit 15d263b379
+2
View File
@@ -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 )