Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 27, 2008, 4:08:51 AM (16 years ago)
Author:
landauf
Message:

many changes, most important: BaseObject takes now a pointer to it's creator which is needed to build a level hierarchy (with different scenes)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/network/Synchronisable.cc

    r2011 r2019  
    134134    orxonox::Identifier* id = ClassByID(header->classID);
    135135    assert(id);
    136     orxonox::BaseObject *bo = id->fabricate();
     136    orxonox::BaseObject *bo = id->fabricate(0); // TODO: get creator
    137137    Synchronisable *no = dynamic_cast<Synchronisable *>(bo);
    138138    assert(no);
Note: See TracChangeset for help on using the changeset viewer.