public virtual void DebugDraw() { if (MyDebugDrawSettings.DEBUG_DRAW_GRID_TERMINAL_SYSTEMS) { MyRenderProxy.DebugDrawText3D(m_cubeGrid.WorldMatrix.Translation, TerminalSystem.GetHashCode().ToString(), Color.NavajoWhite, 1.0f, false); } if (MyDebugDrawSettings.DEBUG_DRAW_CONVEYORS) { ConveyorSystem.DebugDraw(m_cubeGrid); ConveyorSystem.DebugDrawLinePackets(); } if (MySession.Static.Settings.EnableOxygen && MySession.Static.Settings.EnableOxygenPressurization && MyDebugDrawSettings.DEBUG_DRAW_OXYGEN) { GasSystem.DebugDraw(); } }