Navigation
API > API/Runtime > API/Runtime/Chaos > API/Runtime/Chaos/TGeometryParticle
Describes how a call to ModifyGeometry wishes to access the underlying particle geometry
| Name | EGeometryAccess |
| Type | enum |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/ParticleHandle.h |
| Include Path | #include "Chaos/ParticleHandle.h" |
Syntax
enum EGeometryAccess
{
Direct,
ShallowCopy,
DeepCopy,
}
Values
| Name | Remarks |
|---|---|
| Direct | Grant direct access to the geometry, use with care - if the geometry is in use inside a solver this will likely be unsafe. |
| ShallowCopy | Create a new root union, but shallow copy all geometries within the union. |
| DeepCopy | Create a new root union and deep copy all geometries within it. |