vault backup: 2024-10-12 17:19:45

This commit is contained in:
2024-10-12 17:19:46 +08:00
parent ff94ddca61
commit 244c0c52f6
960 changed files with 31348 additions and 10 deletions

View File

@@ -0,0 +1,19 @@
# DisplayValue
- **功能描述:** Enum /Script/Engine.AnimPhysCollisionType
- **使用位置:** UENUM::UMETA
- **引擎模块:** Enum Property
- **常用程度:** 0
## 源码例子:
```cpp
UENUM()
enum class AnimPhysCollisionType : uint8
{
CoM UMETA(DisplayName="CoM", DisplayValue="CoM", ToolTip="Only limit the center of mass from crossing planes."),
CustomSphere UMETA(ToolTip="Use the specified sphere radius to collide with planes."),
InnerSphere UMETA(ToolTip="Use the largest sphere that fits entirely within the body extents to collide with planes."),
OuterSphere UMETA(ToolTip="Use the smallest sphere that wholely contains the body extents to collide with planes.")
};
```