warn on bad UpdateFunction
This commit is contained in:
+5
-1
@@ -352,7 +352,11 @@ void ActorFrame::UpdateInternal( float fDeltaTime )
|
|||||||
{
|
{
|
||||||
Lua *L = LUA->Get();
|
Lua *L = LUA->Get();
|
||||||
m_UpdateFunction.PushSelf( L );
|
m_UpdateFunction.PushSelf( L );
|
||||||
ASSERT( !lua_isnil(L, -1) );
|
if( lua_isnil(L, -1) )
|
||||||
|
{
|
||||||
|
LOG->Warn( "Error compiling UpdateFunction" );
|
||||||
|
return;
|
||||||
|
}
|
||||||
this->PushSelf( L );
|
this->PushSelf( L );
|
||||||
lua_pushnumber( L, fDeltaTime );
|
lua_pushnumber( L, fDeltaTime );
|
||||||
RString sError;
|
RString sError;
|
||||||
|
|||||||
Reference in New Issue
Block a user