Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 16, 2019, 2:20:38 PM (5 years ago)
Author:
jeromela
Message:

cleanup function worksls!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/OrxoBlox_FS19/src/modules/OrxoBlox/OrxoBloxBall.cc

    r12368 r12376  
    128128    */
    129129    void OrxoBloxBall::tick(float dt)
    130     {
     130    {   
     131       
    131132        SUPER(OrxoBloxBall, tick, dt);
    132133
     
    148149               
    149150                orxoblox_->LevelUp();
     151                orxoblox_->LevelUp();
     152                orxout() << "LevelUp 2 finished, trying to call end() function";
     153                //this->end();
     154
    150155
    151156
     
    294299        Vector3 positionStone = Stone->getPosition();
    295300        Vector3 myPosition = this->getPosition();
    296         orxout() << "About to Bounce >D" << endl;
     301        //orxout() << "About to Bounce >D" << endl;
    297302       
    298303            int distance_X = myPosition.x - positionStone.x;
     
    306311                distance_Z = -distance_Z;
    307312
    308             orxout() << distance_X << endl;
    309             orxout() << distance_Z << endl;
     313            //orxout() << distance_X << endl;
     314            //orxout() << distance_Z << endl;
    310315
    311316            if (distance_X < distance_Z) {
    312317                velocity.z = -velocity.z;
    313                 orxout() << "z" << endl; 
     318                //orxout() << "z" << endl; 
    314319            }
    315320            else if (distance_Z < distance_X) {
    316321                velocity.x = -velocity.x;
    317                 orxout() << "x" << endl;       
     322                //orxout() << "x" << endl;       
    318323            }
    319324            else {
    320325                velocity.x = -velocity.x;
    321326                velocity.z = -velocity.z;
    322                 orxout() << "both" << endl;
     327                //orxout() << "both" << endl;
    323328            }                                 
    324329
Note: See TracChangeset for help on using the changeset viewer.