mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-05 13:30:34 +00:00
fill in the validated variables
This commit is contained in:
parent
fa760fa746
commit
f633ef3a3d
184 changed files with 1359 additions and 1216 deletions
|
|
@ -164,14 +164,19 @@ public:
|
|||
void read( BitStream *stream );
|
||||
};
|
||||
|
||||
enum animEnums
|
||||
{
|
||||
Axis = 3,
|
||||
Channel = 3
|
||||
};
|
||||
/// The positional animation parameters for x, y, and z.
|
||||
AnimValue<3> mOffset;
|
||||
AnimValue<Axis> mOffset;
|
||||
|
||||
/// The rotational animation parameters for x, y, and z.
|
||||
AnimValue<3> mRot;
|
||||
AnimValue<Axis> mRot;
|
||||
|
||||
/// The color animation parameters for r, g, and b.
|
||||
AnimValue<3> mColor;
|
||||
AnimValue<Channel> mColor;
|
||||
|
||||
/// The brightness animation parameter.
|
||||
AnimValue<1> mBrightness;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue