This commit is contained in:
Glenn Maynard
2004-12-27 22:30:51 +00:00
parent c6370d4fcd
commit 0d4f15c72f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -297,7 +297,7 @@ void Actor::UpdateTweening( float fDeltaTime )
}
}
bool Actor::IsFirstUpdate()
bool Actor::IsFirstUpdate() const
{
return m_bFirstUpdate;
}
+1 -1
View File
@@ -64,7 +64,7 @@ public:
virtual void DrawPrimitives() {}; // Derivitives should override
virtual void EndDraw(); // pops transform from world matrix stack
bool IsFirstUpdate();
bool IsFirstUpdate() const;
virtual void Update( float fDeltaTime );
void UpdateTweening( float fDeltaTime );
void CopyTweening( const Actor &from );