mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Remove EntityLookupComponent and de-dupe AABBs (#3367)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
This commit is contained in:
@@ -8,6 +8,19 @@ namespace Robust.Shared.Physics
|
||||
[RegisterComponent]
|
||||
public sealed class BroadphaseComponent : Component
|
||||
{
|
||||
internal IBroadPhase Tree = default!;
|
||||
/// <summary>
|
||||
/// Stores all non-static bodies.
|
||||
/// </summary>
|
||||
public IBroadPhase DynamicTree = default!;
|
||||
|
||||
/// <summary>
|
||||
/// Stores all static bodies.
|
||||
/// </summary>
|
||||
public IBroadPhase StaticTree = default!;
|
||||
|
||||
/// <summary>
|
||||
/// Stores all entities not in another tree.
|
||||
/// </summary>
|
||||
public DynamicTree<EntityUid> SundriesTree = default!;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user