Changeset 6814 for code/branches/rocket/src/modules
- Timestamp:
- May 1, 2010, 6:15:40 PM (15 years ago)
- Location:
- code/branches/rocket/src/modules/weapons
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/rocket/src/modules/weapons/RocketController.cc
r6813 r6814 67 67 } 68 68 69 /* 70 I wanted to define the controllable entity with this function but the compiler gives the error: line 80: rocket - unidentified identifier 71 or some similar error. 72 */ 69 70 RocketController::~RocketController() { 71 72 delete this->getControllableEntity(); 73 74 } 75 76 73 77 74 78 } -
code/branches/rocket/src/modules/weapons/RocketController.h
r6813 r6814 48 48 public: 49 49 RocketController(BaseObject* creator); 50 virtual ~RocketController() {};50 virtual ~RocketController(); 51 51 52 52 virtual void tick(float dt); -
code/branches/rocket/src/modules/weapons/weaponmodes/SimpleRocketFire.cc
r6813 r6814 65 65 66 66 67 /*this->computeMuzzleParameters(this->getWeapon()->getWeaponPack()->getWeaponSystem()->getPawn()->getAimPosition());68 rocket->setOrientation(this->getMuzzleOrientation());69 rocket->setPosition(this->getMuzzlePosition());70 rocket->setVelocity(this->getMuzzleDirection() * this->speed_);67 this->computeMuzzleParameters(this->getWeapon()->getWeaponPack()->getWeaponSystem()->getPawn()->getAimPosition()); 68 con->getControllableEntity()->setOrientation(this->getMuzzleOrientation()); 69 con->getControllableEntity()->setPosition(this->getMuzzlePosition()); 70 /* rocket->setVelocity(this->getMuzzleDirection() * this->speed_); 71 71 rocket->scale(2); 72 72
Note: See TracChangeset
for help on using the changeset viewer.