Changeset 8316 in orxonox.OLD for trunk/src/lib/coord
- Timestamp:
- Jun 11, 2006, 1:57:27 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/coord/p_node.cc
r7954 r8316 36 36 */ 37 37 PNode::PNode (PNode* parent, long nodeFlags) 38 : Synchronizeable(), BaseObject()38 : BaseObject(), Synchronizeable() 39 39 { 40 40 this->setClassID(CL_PARENT_NODE, "PNode"); … … 798 798 { 799 799 this->relDirection = rotQuat; 800 this->bRelDirChanged ;800 this->bRelDirChanged = true; 801 801 } 802 802 else … … 805 805 this->toDirection = NULL; 806 806 PRINTF(5)("SmoothRotate of %s finished\n", this->getName()); 807 this->bRelDirChanged ;807 this->bRelDirChanged = true; 808 808 } 809 809 } … … 1058 1058 else if (parentingMode == PNODE_ROTATE_AND_MOVE) 1059 1059 return "rotate-and-move"; 1060 else 1061 return "all"; 1060 1062 } 1061 1063 … … 1077 1079 else if (parentingMode == "rotate-and-move") 1078 1080 return (PNODE_ROTATE_AND_MOVE); 1081 else 1082 return PNODE_ALL; 1079 1083 } 1080 1084
Note: See TracChangeset
for help on using the changeset viewer.