Used to dynamically edit and manage mesh colliders and their triangles at runtime. This is particularly useful in games with procedurally generated content or user-generated levels, where the environment can change dynamically.
More...
|
int | AddCollider2D (FrameBase f, MapStaticCollider2D collider, bool resetPhysics=true) |
| Adds a 2D collider to the map. More...
|
|
int | AddCollider3D (FrameBase f, MapStaticCollider3D collider, bool resetPhysics=true) |
| Adds a 3D collider (non-mesh) to the map. More...
|
|
int | AddMeshCollider (FrameBase f, IList< FPVector3 > vertices, IList< int > indices=null, int additionalCapacity=0, StaticColliderData? staticData=default, bool resetPhysics=true, FPVector3? position=null, FPQuaternion? rotation=null, AssetRef< PhysicsMaterial >? material=null, bool smoothSphereCollisions=false) |
| Adds a mesh collider to the map. More...
|
|
EditMeshScope | EditMeshTriangles (FrameBase f, int meshColliderIndex) |
| Edits the triangles of a mesh collider within a specific scope. When the scope is disposed, the changes are applied to the map. More...
|
|
override void | Loaded (IResourceManager resourceManager, Native.Allocator allocator) |
| Called when the map asset is loaded. More...
|
|
void | RemoveAllColliders2D (FrameBase f) |
| Removes all 2D colliders. More...
|
|
void | RemoveAllColliders3D (FrameBase f) |
| Removes all 3D colliders. More...
|
|
bool | RemoveCollider2D (FrameBase f, int colliderId, bool resetPhysics=true) |
| Removes a 2D collider from the map. More...
|
|
bool | RemoveCollider3D (FrameBase f, int colliderId, bool resetPhysics=true) |
| Removes a 3D collider from the map. More...
|
|
bool | RemoveMeshCollider (FrameBase f, int meshColliderId, bool resetPhysics=true) |
| Removes a mesh collider from the map. More...
|
|
override void | Disposed (IResourceManager resourceManager, Native.Allocator allocator) |
| Called by the resource manager when the map asset was disposed to release memory. More...
|
|
void | EnsurePhysicsWorldSizeInValidRange () |
| Post-process and clamp the physics world size. More...
|
|
NavMesh | GetNavMesh (String name) |
| Get namvesh by name. More...
|
|
Int32 | GetStaticColliderTrianglesSerializedSize (bool isWriting) |
| Get the serialized size of the static collider triangles data. More...
|
|
override void | Loaded (IResourceManager resourceManager, Native.Allocator allocator) |
| Called by the resource manager when the map asset was loaded. Used to deserialize map data allocate memory and initialize map data structures. More...
|
|
void | SerializeStaticColliderTriangles (ByteStream stream, Native.Allocator allocator, Boolean write) |
| Serialize or deserialize the static collider triangles data. More...
|
|
|
List< FreeTriangle > | FreeTrianglePool = new List<FreeTriangle>() |
| Free triangles that can be used to store new triangles. More...
|
|
AssetRef< Map > | SourceMap |
| The source map that was used to create this dynamic map. More...
|
|
UnmanagedTriangleArray | AllRuntimeTriangles = new UnmanagedTriangleArray() |
| The unmanaged buffer containing all static triangles for this map. More...
|
|
PhysicsCommon.BucketAxis | BucketingAxis = PhysicsCommon.BucketAxis.X |
| Physics entries are put into buckets according to their position in the bucketing axis. More...
|
|
Int32 | BucketsCount = 16 |
| The amount of buckets used in the broad phase, which are resolved in parallel. Use a reasonable amount according to how many physics entries (colliders) you have. Too many buckets and the handling overhead increases without any performance gain because there are only few entries in each one; too few buckets and there will be an excessive amount of entries in each, slowing down the broad phase performance. More...
|
|
Int32 | BucketsSubdivisions = 8 |
| Regular queries (overlaps and raycasts) use a stabbing approach for checking as few entries as possible in the buckets subdivisions. Tweak the number in accordance with the expected amount of entries and regular queries you perform. Too many subdivisions will add overhead without performance, while too few will result in queries taking longer to resolve, because they will have to check too many entries. More...
|
|
SortedDictionary< int, MeshTriangleVerticesCcw > | CollidersManagedTriangles = new SortedDictionary<Int32, MeshTriangleVerticesCcw>() |
| The edit-time lookup for 3D static collider triangles. More...
|
|
SortedDictionary< int, MeshUnmanagedTrianglesRef > | CollidersRuntimeTriangles = new SortedDictionary<Int32, MeshUnmanagedTrianglesRef>() |
| The runtime lookup for 3D static collider triangles. More...
|
|
Int32 | GridNodeSize = 4 |
| The number of Unity units per navmesh grid cell. Must be multiple of 2. More...
|
|
Int32 | GridSizeX = 64 |
| Number of navmesh grid cells in x-dimension. Toggle Navmesh Grid or Navmesh Area gizmos to preview. More...
|
|
Int32 | GridSizeY = 64 |
| Number of navmesh grid cells in y-dimension. Toggle Navmesh Grid or Navmesh Area gizmos to preview. More...
|
|
ComponentPrototypeSet[] | MapEntities = Array.Empty<ComponentPrototypeSet>() |
| The list of entities baked into this map. More...
|
|
Dictionary< String, NavMesh > | NavMeshes |
| The lookup table for navmeshes. Use navmesh names to find the navmesh object. The mapping is created during the asset Loaded callback. More...
|
|
AssetRef< NavMesh >[] | NavMeshLinks = Array.Empty<AssetRef<NavMesh>>() |
| The list not navmesh assets baked into this map. More...
|
|
Dictionary< String, Int32 > | RegionMap |
| The region map lookup table. Use region names to find the region index. The mapping is created during the asset Loaded callback. More...
|
|
string[] | Regions = Array.Empty<string>() |
| The list of navmesh region names baked into this map. More...
|
|
String | Scene |
| The Unity scene name is baked into the map. It's loaded automatically if Simulation.AutoLoadSceneFromMap is enabled. More...
|
|
String | SceneGuid |
| The Unity scene guid is baked into the map for convenience. More...
|
|
FP | SceneMeshCellSize = FP._4 |
| Defines the size of the cells into which the 3D triangle soup is divided. This number should be adapted based on how dense the meshes' triangles density to get a reasonable amount of triangles per cell. For better visualization enable related fields in the QuantumEditorSettings asset's Collider gizmos section. This will affect the performance of both the broad phase and regular queries. Use the Task Profiler to analyse the performance and find the most suitable number for your game. More...
|
|
String | ScenePath |
| The Unity scene path is baked into the map for convenience. More...
|
|
Int32 | SerializedTriangleDataUncompressedSize |
| How big the serialized triangle data is in uncompressed form. More...
|
|
Boolean | SerializeTrianglesMetadata = false |
| If triangles metadata should be serialized (true) or recomputed (false) More...
|
|
PhysicsCommon.SortAxis | SortingAxis = PhysicsCommon.SortAxis.Y |
| The queries in a bucket are sorted according to their position in the sorting axis. More...
|
|
MapStaticCollider2D[] | StaticColliders2D = Array.Empty<MapStaticCollider2D>() |
| All static 2D colliders baked into this map. More...
|
|
MapStaticCollider3D[] | StaticColliders3D = Array.Empty<MapStaticCollider3D>() |
| All static 3D colliders baked into this map. More...
|
|
SortedDictionary< int, TriangleCCW[]> | StaticColliders3DTriangles => null |
| Obsolete More...
|
|
AssetRef< BinaryData > | StaticColliders3DTrianglesData |
| Binary 3D triangle data is saved on an addition Quantum asset. More...
|
|
List< PolygonColliderRuntimeData > | StaticPolygonColliderData = new List<PolygonColliderRuntimeData>() |
| The list of static 2D polygon collider runtime data. More...
|
|
Int32 | TriangleMeshCellSize = -1 |
| Obsolete. Use SceneMeshCellSize instead for representing the cell size with an FP value. More...
|
|
AssetRef | UserAsset |
| An optional generic asset reference that the map can be associated with. More...
|
|
Int32 | WorldSize = 256 |
| The physics scene size in the bucketing axis. The broad phase is clamped by a bounding box of all physics entries between -WorldSize/2 to WorldSize/2. It is therefore crucial to ensure the world is big enough to encompass all entities. If an entity is outside the world, it will cost you performance as it is added to either the first or last bucket. Everything outside the bounding box is considered to be at the world's edge, from the physics engine perspective, which will result in false collision candidates. In the non bucketing axis, the physics world is only limited by the value range of FP.UsableMin to FP.UsableMax. More...
|
|
Used to dynamically edit and manage mesh colliders and their triangles at runtime. This is particularly useful in games with procedurally generated content or user-generated levels, where the environment can change dynamically.