Difference between revisions of "CBaseAnimating (CS)"

From AlliedModders Wiki
Jump to: navigation, search
(CBaseAnimating offset list)
 
(Added some contents.)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
<span style="font-variant:small-caps">Couter-Strike offset list</span>
+
[[Category:CS Class List]]
[[Category:CS Offset List]]
 
  
  
 +
== Basic Information ==
  
*[[CBaseEntity]]
+
* '''Classname''': CBaseAnimating. <br />
** [[CBaseDelay]]
+
* '''Description''': Every entity that has a model uses CBaseAnimating. Classes derived from CBaseAnimating can set a model and animate. <br />
 +
 
 +
 
 +
== Class Hierarchy ==
 +
 
 +
* '''[[CBaseEntity (CS)|CBaseEntity]]'''
 +
** '''[[CBaseDelay (CS)|CBaseDelay]]'''
 
*** ''' CBaseAnimating '''
 
*** ''' CBaseAnimating '''
**** [[CActAnimating]]
+
**** '''[[CActAnimating (CS)|CActAnimating]]'''
**** [[CBasePlayerItem]]
+
**** '''[[CBasePlayerItem (CS)|CBasePlayerItem]]'''
**** [[CBaseToggle]]
+
**** '''[[CBaseToggle (CS)|CBaseToggle]]'''
  
  
<tt>''W = Windows'' |</tt><tt> ''L = Linux''</tt>
+
== Entity Data ==
 +
 
 +
<tt>W = Windows |</tt><tt> L = Linux</tt>
 
{| cellpadding="4"
 
{| cellpadding="4"
 
|- class="t2th"
 
|- class="t2th"
Line 52: Line 60:
 
| True if the sequence loops.
 
| True if the sequence loops.
 
|}
 
|}
 +
 +
 +
== HLSDK Reference ==
 +
 +
* [http://svn.tcwonline.org/viewvc.cgi/hlsdk/dlls/cbase.h?view=markup&root=amxmodx cbase.h] ''(line 459)''
 +
* [http://svn.tcwonline.org/viewvc.cgi/hlsdk/dlls/animating.cpp?view=markup&root=amxmodx animating.cpp] ''(line 29)''

Latest revision as of 12:08, 17 May 2009


Basic Information

  • Classname: CBaseAnimating.
  • Description: Every entity that has a model uses CBaseAnimating. Classes derived from CBaseAnimating can set a model and animate.


Class Hierarchy


Entity Data

W = Windows | L = Linux

Name W. Offset L. Offset L. Diff Type Description
m_flFrameRate 36 41 +5 float Computed FPS for current sequence.
m_flGroundSpeed 37 42 +5 float Computed linear movement rate for current sequence.
m_flLastEventCheck 38 43 +5 float Last time the event list was checked.
m_fSequenceFinished 39 44 +5 BOOL Flag set when StudioAdvanceFrame moves across a frame boundry.
m_fSequenceLoops 40 45 +5 BOOL True if the sequence loops.


HLSDK Reference