Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 7, 2015, 2:05:58 PM (10 years ago)
Author:
meierman
Message:

Before finishing touch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/hoverHS15/src/modules/hover/Hover.cc

    r10900 r10928  
    109109    void Hover::tick(float dt)
    110110    {
     111
    111112        SUPER(Hover, tick, dt);
    112113
     
    125126            LevelOut();
    126127            firstTick = false;
     128
     129            //Outer Walls
     130            for(int i = 0; i<10; i++){
     131                new HoverWall(origin_->getContext(), 0, i+1, 1);
     132                new HoverWall(origin_->getContext(), 10, i+1, 1);
     133                new HoverWall(origin_->getContext(), i+1, 0, 2);
     134                new HoverWall(origin_->getContext(), i+1, 10, 2);
     135            }
    127136
    128137            for(int y=0; y<10; y++){
Note: See TracChangeset for help on using the changeset viewer.