Changeset 9518 in orxonox.OLD for branches/proxy/src/world_entities/weapons
- Timestamp:
- Jul 27, 2006, 6:58:04 PM (18 years ago)
- Location:
- branches/proxy/src/world_entities/weapons
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/world_entities/weapons/aim.cc
r9516 r9518 71 71 this->range = 10000; 72 72 this->angle = M_PI_4; 73 this->targetGroup = OM_GROUP_0 2_PROJ;73 this->targetGroup = OM_GROUP_01; 74 74 this->anim = new tAnimation<Aim>(this, &Aim::setSize); 75 75 this->anim->setInfinity(ANIM_INF_CONSTANT); … … 132 132 void Aim::setTargetGroupS(const std::string& groupName) 133 133 { 134 printf("::::::::::::::::::::::: TEST\n");135 134 OM_LIST id = ObjectManager::StringToOMList(groupName); 136 135 if (id != OM_NULL) … … 138 137 else 139 138 PRINTF(2)("List %s not found for targetting\n", groupName.c_str()); 140 141 printf("targetGroup: %s, %d", groupName.c_str(), id);142 139 } 143 140 -
branches/proxy/src/world_entities/weapons/targeting_turret.h
r9516 r9518 26 26 virtual void draw() const; 27 27 28 const PNode* getLockedTarget() const { return lockedTarget; }; 29 28 30 private: 29 31 void init();
Note: See TracChangeset
for help on using the changeset viewer.