feat(scripting): expose PhysX rigidbody and raycast APIs

This commit is contained in:
2026-04-15 13:58:30 +08:00
parent 914c9361ed
commit bda8a35d77
13 changed files with 787 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace XCEngine
{
public enum ForceMode
{
Force = 0,
Acceleration = 1,
Impulse = 2,
VelocityChange = 3
}
}