mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-25 14:25:38 +00:00
generalized ai subsystem wipwork
This commit is contained in:
parent
75e23e85ea
commit
8c663a19a5
16 changed files with 1320 additions and 6 deletions
|
|
@ -1895,7 +1895,6 @@ public:
|
|||
void registerCollisionCallback(CollisionEventCallback*);
|
||||
void unregisterCollisionCallback(CollisionEventCallback*);
|
||||
|
||||
protected:
|
||||
enum {
|
||||
ANIM_OVERRIDDEN = BIT(0),
|
||||
BLOCK_USER_CONTROL = BIT(1),
|
||||
|
|
@ -1903,6 +1902,8 @@ protected:
|
|||
BAD_ANIM_ID = 999999999,
|
||||
BLENDED_CLIP = 0x80000000,
|
||||
};
|
||||
U8 anim_clip_flags;
|
||||
protected:
|
||||
struct BlendThread
|
||||
{
|
||||
TSThread* thread;
|
||||
|
|
@ -1910,7 +1911,6 @@ protected:
|
|||
};
|
||||
Vector<BlendThread> blend_clips;
|
||||
static U32 unique_anim_tag_counter;
|
||||
U8 anim_clip_flags;
|
||||
S32 last_anim_id;
|
||||
U32 last_anim_tag;
|
||||
U32 last_anim_lock_tag;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue