补充3.7版本文档:物理系统API/事件/枚举值、游戏设置事件、物品ID变更、物理使用指南
Some checks failed
Deploy VitePress to AliYun OSS / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-03-02 00:17:03 +08:00
parent 073d730337
commit 1d963e8307
16 changed files with 30681 additions and 28994 deletions

View File

@@ -0,0 +1,18 @@
# PxActorFlag
class in mod.common.minecraftEnum
- 描述
物理实体行为枚举
```python
class PxActorFlag(object):
eDISABLE_GRAVITY = (1 << 1) # 禁用重力
eDISABLE_SIMULATION = (1 << 3) # 禁用物理模拟
```