fill in the validated variables

This commit is contained in:
AzaezelX 2025-03-09 11:53:23 -05:00
parent fa760fa746
commit f633ef3a3d
184 changed files with 1359 additions and 1216 deletions

View file

@ -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;