Changeset 9303
- Timestamp:
- Jun 17, 2012, 6:38:14 PM (12 years ago)
- Location:
- code/branches/presentation2012merge
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2012merge/data/levels/templates/pickupRepresentationTemplates.oxt
r9269 r9303 491 491 492 492 <Template name=smallshrinkpickup> 493 < InvisiblePickup493 <ShrinkPickup 494 494 duration = 10.0 495 495 shrinkFactor = 2.5 … … 516 516 517 517 <Template name=mediumshrinkpickup> 518 < InvisiblePickup518 <ShrinkPickup 519 519 duration = 30.0 520 520 shrinkFactor = 5.0 … … 541 541 542 542 <Template name=hugeshrinkpickup> 543 < InvisiblePickup543 <ShrinkPickup 544 544 duration = 60.0 545 545 shrinkFactor = 10.0 -
code/branches/presentation2012merge/src/libraries/core/Template.cc
r8858 r9303 149 149 orxout(verbose, context::templates) << object->getLoaderIndentation() << " aplying Template \"" << this->getName() << "\"..." << endl; 150 150 151 // check if the template is applied on an object of the right type 152 Identifier* identifier = Identifier::getIdentifierByString(this->getXMLElement().Value()); 153 if (!object->getIdentifier()->isA(identifier)) 154 orxout(internal_warning, context::templates) << "Template was defined for " << identifier->getName() << " but the object is of type " << object->getIdentifier()->getName() << endl; 155 151 156 Element temp = &const_cast<TiXmlElement&>(this->getXMLElement()); 152 157
Note: See TracChangeset
for help on using the changeset viewer.