Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2115 in orxonox.OLD for orxonox/branches/chris/src/command_node.cc


Ignore:
Timestamp:
Jul 13, 2004, 10:49:20 AM (20 years ago)
Author:
chris
Message:

orxonox/branches/chris: Managed to apply all that rotating and translating so that you now actually see the debug player following the track. You can even steer the spaceship via the keys now… unfortunately the coordinate transformations are still a mess. Even though mapping from Locations to Placements seems to work in general, applying the finetuned position and rotation still messes up the whole damn thing…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/chris/src/command_node.cc

    r2105 r2115  
    194194void CommandNode::relay (Command* cmd)
    195195{
    196 perror("CommandNode|relay()");
     196printf("CommandNode|relay()\n");
    197197        List<WorldEntity>* plist = bound;
    198198       
     
    204204        while( (plist = plist->get_next()) != NULL)
    205205        {
    206                 (plist->get_object())->command (cmd);
     206                plist->get_object()->command (cmd);
    207207        }
    208208}
Note: See TracChangeset for help on using the changeset viewer.