Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 4, 2017, 3:17:59 PM (8 years ago)
Author:
jkindle
Message:

Fixed turning, added and finished Gumbas, added turnOnCollide for all NPC and items, added Flagstone - todo: add points on flagstone hit and go into a between lvl mode, then warp to lvl 2. AAH, and added onDeath fcts…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/SuperOrxoBros_FS17/src/modules/superorxobros/SOBFigure.h

    r11405 r11412  
    3838    class _SOBExport SOBFigure : public ControllableEntity
    3939    {
    40         public:
     40    public:
    4141            SOBFigure(Context* context); //!< Constructor. Registers and initializes the object.
    4242            virtual ~SOBFigure() {}
     
    4646            virtual void moveRightLeft(const Vector2& value) override; //!< Overloaded the function to steer the figure up and down.
    4747           
    48          
     48
    4949            virtual void boost(bool boost) override;
    5050            virtual  bool collidesAgainst(WorldEntity* otherObject, const btCollisionShape* ownCollisionShape, btManifoldPoint& contactPoint) override;
    5151
    52        
     52
    5353            //virtual void CollisionWithEnemy(SOBEnemy* enemy);
    5454           
    5555           
    56    
    57          
     56
     57
    5858            bool dead_;
     59            bool predead_;
    5960
    60          
    6161        private:
    62            
     62
    6363            bool gotPowerUp_;
    6464            bool moveUpPressed_;
     
    7474            bool isColliding_;
    7575            WorldEntity* particlespawner_;
     76            int sgn(float x);
    7677
    77            
     78
     79
    7880           
    79            
    80     };
    81 }
     81
     82        };
     83    }
    8284
    8385#endif /* _SOBFigure_H__ */
Note: See TracChangeset for help on using the changeset viewer.