Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 14, 2016, 4:03:16 PM (8 years ago)
Author:
plehmann
Message:

changed the NewScriptController and Task classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/plehmannFS16/src/orxonox/controllers/DebugTask.cc

    r11165 r11167  
    3939    RegisterClass(DebugTask);
    4040
    41     DebugTask::DebugTask() : isRunning_(false)
     41    DebugTask::DebugTask(Context* context) : isRunning_(false)
    4242    {
    4343        RegisterObject(DebugTask);
    4444    }
    45     DebugTask::DebugTask(float startTime) : isRunning_(false)
     45
     46    DebugTask::Tick(float dt)
    4647    {
    47         RegisterObject(DebugTask);
    48         startTime_ = startTime;
     48
     49        orxout() << "*" << endl;
    4950    }
    5051
    51 
    52    
    53 
    5452}
Note: See TracChangeset for help on using the changeset viewer.