mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-03 02:27:08 +02:00
* Debugdraw enhancements * Fix up the overlays * Changes * Box2D licence * Update Robust.Client/Console/Commands/PhysicsOverlayCommands.cs Co-authored-by: Paul Ritter <ritter.paul1@googlemail.com> * Fix dependency Co-authored-by: Paul Ritter <ritter.paul1@googlemail.com>
14 lines
365 B
C#
14 lines
365 B
C#
namespace Robust.Client.Debugging
|
|
{
|
|
/// <summary>
|
|
/// A collection of visual debug overlays for the client game.
|
|
/// </summary>
|
|
public interface IDebugDrawing
|
|
{
|
|
/// <summary>
|
|
/// Toggles the visual overlay of the local origin for each entity on screen.
|
|
/// </summary>
|
|
bool DebugPositions { get; set; }
|
|
}
|
|
}
|