Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 3, 2011, 11:28:06 PM (13 years ago)
Author:
landauf
Message:

fixed some stuff that became visible after the recent changes in the output system:

  • fixed ogre exception because of included files in xml template files (it was searching for templates/includes/*.oxi instead of includes/*.oxi)
  • initializing worldentities with mass 1 instead of 0 to avoid a warning
  • Loader::open now also supports a bVerbose flag to hide output for internal xml files (like resource files)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/core/GraphicsManager.cc

    r8806 r8820  
    114114        resources_.reset(new XMLFile("DefaultResources.oxr"));
    115115        resources_->setLuaSupport(false);
    116         Loader::open(resources_.get());
     116        Loader::open(resources_.get(), ClassTreeMask(), false);
    117117
    118118        // Only for runs in the build directory (not installed)
     
    122122        extResources_.reset(new XMLFile("resources.oxr"));
    123123        extResources_->setLuaSupport(false);
    124         Loader::open(extResources_.get());
     124        Loader::open(extResources_.get(), ClassTreeMask(), false);
    125125
    126126        if (bLoadRenderer)
     
    313313        orxout(internal_info) << "Loading Debug Overlay..." << endl;
    314314        debugOverlay_.reset(new XMLFile("debug.oxo"));
    315         Loader::open(debugOverlay_.get());
     315        Loader::open(debugOverlay_.get(), ClassTreeMask(), false);
    316316    }
    317317
Note: See TracChangeset for help on using the changeset viewer.