summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/physConversions.h
AgeCommit message (Collapse)Author
2022-12-20ksys/phys: Add RagdollController::getTransform and moreLéo Lam
Credit to @Dragorn421 for helping me figure out the rotation matrix thing in the getTransform function
2022-05-01ksys/phys: Finish ModelBoneAccessorLéo Lam
2022-03-20ksys/phys: Change getRigidBody to take a const-ref for consistencyLéo Lam
2022-03-10ksys/phys: Finish EntityContactListenerLéo Lam
2022-03-08ksys/phys: Remove unnecessary include in physConversionsLéo Lam
2022-03-08ksys/phys: Start adding EntityContactListenerLéo Lam
2022-03-05ksys/phys: Finish ContactListenerLéo Lam
2022-03-03ksys/phys: Fix accuracy issue for storeToVec3Léo Lam
Allows us to get rid of a bunch of local variables that only existed to force the entire vector to be loaded.
2022-01-16ksys/phys: Add two RigidBody init functions (and prerequisites)Léo Lam
2022-01-13ksys/phys: Start adding RigidBodyMotionProxyLéo Lam
2022-01-13ksys/phys: Rewrite toMtx34 without using intrinsicsLéo Lam
Doing the assignments in this specific pattern of assignments is sufficient to get the desired (bad) codegen when combined with hkVector4f's operator() (which was added recently).
2022-01-13ksys/phys: Fix a nasty typo in toHkQuatLéo Lam
2022-01-10ksys/phys: Add RigidBodyAccessorLéo Lam