Difference between revisions of "GeAnim2D"

From GriffinEngine
Jump to: navigation, search
 
 
(One intermediate revision by the same user not shown)
Line 16: Line 16:
 
=== Fields ===
 
=== Fields ===
 
''Note:'' All coordinates are in pixels, relative to top-left corner of the window. All angles are in degrees.
 
''Note:'' All coordinates are in pixels, relative to top-left corner of the window. All angles are in degrees.
*{{base|geObject2D}}<source> double x;      // x coordinate (px) </source>
+
*{{base|geObject2D}}<code> double x;      // x coordinate (px) </code>
*{{base|geObject2D}}<source> double y;      // y coordinate (px) </source>
+
*{{base|geObject2D}}<code> double y;      // y coordinate (px) </code>
*{{base|geObject2D}}<source> double r;      // rotation (degrees) - around axis point</source>
+
*{{base|geObject2D}}<code> double r;      // rotation (degrees) - around axis point</code>
*{{base|geObject2D}}<source> double s;      // scale - around axis point</source>
+
*{{base|geObject2D}}<code> double s;      // scale - around axis point</code>
*{{base|geObject2D}}<source> double w;      // width (px) </source>
+
*{{base|geObject2D}}<code> double w;      // width (px) </code>
*{{base|geObject2D}}<source> double h;      // height (px) </source>
+
*{{base|geObject2D}}<code> double h;      // height (px) </code>
*{{base|geObject2D}}<source> double alignX; // horizontal alignment offset - use Align() to set these </source>
+
*{{base|geObject2D}}<code> double alignX; // horizontal alignment offset - use Align() to set these </code>
*{{base|geObject2D}}<source> double alignY; // vertical alignment offset </source>
+
*{{base|geObject2D}}<code> double alignY; // vertical alignment offset </code>
*{{base|geObject2D}}<source> double axisX;  // horizontal axis offset - use SetAxis() to set these </source>
+
*{{base|geObject2D}}<code> double axisX;  // horizontal axis offset - use SetAxis() to set these </code>
*{{base|geObject2D}}<source> double axisY;  // vertical axis offset </source>
+
*{{base|geObject2D}}<code> double axisY;  // vertical axis offset </code>
*{{base|geObject2D}}<source> bool active;  // indicates whether object should be active/visible </source>
+
*{{base|geObject2D}}<code> bool active;  // indicates whether object should be active/visible </code>
*{{base|geSprite2D}}<source> geSprite* sprite; // currently displayed sprite </source>
+
*{{base|geSprite2D}}<code> geSprite* sprite; // currently displayed sprite </code>
*<source> geAnimation* anim; // animation </source>
+
*<code> geAnimation* anim; // animation </code>
  
 
=== Constructors ===
 
=== Constructors ===
*<source> geAnim2D( double _x=0, double _y=0, double _w=0, double _h=0, geAnimation* _anim=NULL ); </source>
+
*<code> geAnim2D( double _x=0, double _y=0, double _w=0, double _h=0, geAnimation* _anim=NULL ); </code>
*<source> geAnim2D( const geAnim2D& original ); // copy constructor</source>
+
*<code> geAnim2D( const geAnim2D& original ); // copy constructor</code>
  
 
=== Methods ===
 
=== Methods ===
*{{base|geObject2D}}<source> virtual void Align( int alignment = GE_ALIGN_TL, double _alignX = 0, double _alignY = 0 ); </source>
+
*{{base|geObject2D}}<code> virtual void Align( int alignment = GE_ALIGN_TL, double _alignX = 0, double _alignY = 0 ); </code>
*{{base|geObject2D}}<source> virtual void SetAxis( int axis = GE_ALIGN_CENTER, double _axisX = 0, double _axisY = 0 ); </source>
+
*{{base|geObject2D}}<code> virtual void SetAxis( int axis = GE_ALIGN_CENTER, double _axisX = 0, double _axisY = 0 ); </code>
  
  
 
{{ge}}
 
{{ge}}
 
{{hud}}
 
{{hud}}

Latest revision as of 08:51, 19 November 2017

Animated 2D sprite. This class is album identical to geSprite2D with the only difference being an addition of a geAnimation object that updates the sprite. To control the playback of the animation, manipulate the geAnimation object itself.


Usage

Inheritance

Base classes


Reference

Fields

Note: All coordinates are in pixels, relative to top-left corner of the window. All angles are in degrees.

  • double x; // x coordinate (px)
  • double y; // y coordinate (px)
  • double r; // rotation (degrees) - around axis point
  • double s; // scale - around axis point
  • double w; // width (px)
  • double h; // height (px)
  • double alignX; // horizontal alignment offset - use Align() to set these
  • double alignY; // vertical alignment offset
  • double axisX; // horizontal axis offset - use SetAxis() to set these
  • double axisY; // vertical axis offset
  • bool active; // indicates whether object should be active/visible
  • geSprite* sprite; // currently displayed sprite
  • geAnimation* anim; // animation

Constructors

  • geAnim2D( double _x=0, double _y=0, double _w=0, double _h=0, geAnimation* _anim=NULL );
  • geAnim2D( const geAnim2D& original ); // copy constructor

Methods

  • virtual void Align( int alignment = GE_ALIGN_TL, double _alignX = 0, double _alignY = 0 );
  • virtual void SetAxis( int axis = GE_ALIGN_CENTER, double _axisX = 0, double _axisY = 0 );