diff options
Diffstat (limited to 'src/KingSystem/Physics/System/physSystem.cpp')
| -rw-r--r-- | src/KingSystem/Physics/System/physSystem.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/KingSystem/Physics/System/physSystem.cpp b/src/KingSystem/Physics/System/physSystem.cpp index 15d13578..0428a92a 100644 --- a/src/KingSystem/Physics/System/physSystem.cpp +++ b/src/KingSystem/Physics/System/physSystem.cpp @@ -67,4 +67,10 @@ void System::registerContactPointInfo(ContactPointInfo* info) const { mContactMgr->registerContactPointInfo(info); } +RagdollControllerKeyList* System::getRagdollCtrlKeyList() const { + if (!mSystemData) + return nullptr; + return mSystemData->getRagdollCtrlKeyList(); +} + } // namespace ksys::phys |
