Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 3, 2018, 4:01:23 PM (6 years ago)
Author:
adamc
Message:

Trying to spawn entity (2nd attempt)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ScriptableController_FS18/src/orxonox/scriptablecontroller/scriptable_controller_api.cc

    r11932 r11936  
    394394        if(entity == nullptr)
    395395        {
    396             orxout(user_warning) << "Trying to set velocity of an unknown object" << std::endl;
     396            orxout(user_warning) << "Trying to move an unknown object" << std::endl;
    397397            return;
    398398        }
     
    407407        {
    408408            controllable_entity = orxonox_cast<ControllableEntity*>(entity);
    409 
     409            //ATTACHED COLLISION SHAPE is MANDATORY in order to move the entity
    410410            controllable_entity->moveFrontBack(x);
    411411            controllable_entity->moveRightLeft(y);
Note: See TracChangeset for help on using the changeset viewer.