move SetSize to Actor

This commit is contained in:
Glenn Maynard
2005-09-24 06:57:03 +00:00
parent 718cf1787a
commit a3bdc2e5ff
3 changed files with 2 additions and 3 deletions
-2
View File
@@ -376,7 +376,6 @@ public:
static int propagate( T* p, lua_State *L ) { p->SetPropagateCommands( !!IArg(1) ); return 0; }
static int fov( T* p, lua_State *L ) { p->SetFOV( FArg(1) ); return 0; }
static int setsize( T* p, lua_State *L ) { p->SetSize( FArg(1), FArg(2) ); return 0; }
static int SetUpdateRate( T* p, lua_State *L ) { p->SetUpdateRate( FArg(1) ); return 0; }
static int SetFOV( T* p, lua_State *L ) { p->SetFOV( FArg(1) ); return 0; }
static int vanishpoint( T* p, lua_State *L ) { p->SetVanishPoint( FArg(1), FArg(2) ); return 0; }
@@ -396,7 +395,6 @@ public:
{
ADD_METHOD( propagate );
ADD_METHOD( fov );
ADD_METHOD( setsize );
ADD_METHOD( SetUpdateRate );
ADD_METHOD( SetFOV );
ADD_METHOD( vanishpoint );