mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
might as well go ahead and allow substitution statement support
This commit is contained in:
parent
b643aa41a2
commit
7ed3f11c8e
2 changed files with 79 additions and 2 deletions
|
|
@ -146,9 +146,10 @@ class AIControllerData : public SimDataBlock {
|
|||
public:
|
||||
|
||||
AIControllerData();
|
||||
AIControllerData(const AIControllerData&, bool = false);
|
||||
~AIControllerData() {};
|
||||
void packData(BitStream* stream) override { Parent::packData(stream); };
|
||||
void unpackData(BitStream* stream) override { Parent::unpackData(stream); };
|
||||
void packData(BitStream* stream) override;
|
||||
void unpackData(BitStream* stream) override;
|
||||
static void initPersistFields();
|
||||
DECLARE_CONOBJECT(AIControllerData);
|
||||
|
||||
|
|
@ -234,6 +235,7 @@ public:
|
|||
mFlightCeiling = 200.0f;
|
||||
mFlightFloor = 1.0;
|
||||
}
|
||||
AIFlyingVehicleControllerData(const AIFlyingVehicleControllerData&, bool = false);
|
||||
static void initPersistFields();
|
||||
void resolveYaw(AIController* obj, Point3F location, Move* movePtr);
|
||||
void resolveSpeed(AIController* obj, Point3F location, Move* movePtr);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue