Updates to various components, added a few new ones.

This commit is contained in:
Areloch 2019-02-24 01:50:38 -06:00
parent 775ca57047
commit 34d05ff16f
52 changed files with 4566 additions and 1799 deletions

View file

@ -116,6 +116,8 @@ public:
virtual void findContact(SceneObject **contactObject, VectorF *contactNormal, Vector<SceneObject*> *outOverlapObjects) const;
virtual void moveKinematicTo(const MatrixF &xfm);
virtual bool isValid() { return mActor != nullptr; }
};
#endif // _T3D_PHYSICS_BTBODY_H_

View file

@ -128,6 +128,8 @@ public:
///
virtual void moveKinematicTo(const MatrixF &xfm) = 0;
virtual bool isValid() = 0;
};