Method | Description | |
---|---|---|
AppendFlags ( DebugViewFlags flags ) : void |
Append flags to the current flags.
|
|
DrawCircle ( Vector2 center, float radius, float red, float blue, float green ) : void |
Draw a circle.
|
|
DrawPolygon ( Vector2 vertices, int count, float red, float blue, float green ) : void |
Draw a closed polygon provided in CCW order.
|
|
DrawSegment ( Vector2 start, Vector2 end, float red, float blue, float green ) : void |
Draw a line segment.
|
|
DrawSolidCircle ( Vector2 center, float radius, Vector2 axis, float red, float blue, float green ) : void |
Draw a solid circle.
|
|
DrawSolidPolygon ( Vector2 vertices, int count, float red, float blue, float green ) : void |
Draw a solid closed polygon provided in CCW order.
|
|
DrawTransform ( Transform &transform ) : void |
Draw a transform. Choose your own length scale.
|
|
RemoveFlags ( DebugViewFlags flags ) : void |
Remove flags from the current flags.
|
Method | Description | |
---|---|---|
DebugView ( |
public AppendFlags ( DebugViewFlags flags ) : void | ||
flags | DebugViewFlags | The flags. |
return | void |
protected DebugView ( |
||
world | ||
return | System |
public abstract DrawCircle ( Vector2 center, float radius, float red, float blue, float green ) : void | ||
center | Vector2 | The center. |
radius | float | The radius. |
red | float | The red value. |
blue | float | The blue value. |
green | float | The green value. |
return | void |
public abstract DrawPolygon ( Vector2 vertices, int count, float red, float blue, float green ) : void | ||
vertices | Vector2 | The vertices. |
count | int | The vertex count. |
red | float | The red value. |
blue | float | The blue value. |
green | float | The green value. |
return | void |
public abstract DrawSegment ( Vector2 start, Vector2 end, float red, float blue, float green ) : void | ||
start | Vector2 | The start. |
end | Vector2 | The end. |
red | float | The red value. |
blue | float | The blue value. |
green | float | The green value. |
return | void |
public abstract DrawSolidCircle ( Vector2 center, float radius, Vector2 axis, float red, float blue, float green ) : void | ||
center | Vector2 | The center. |
radius | float | The radius. |
axis | Vector2 | The axis. |
red | float | The red value. |
blue | float | The blue value. |
green | float | The green value. |
return | void |
public abstract DrawSolidPolygon ( Vector2 vertices, int count, float red, float blue, float green ) : void | ||
vertices | Vector2 | The vertices. |
count | int | The vertex count. |
red | float | The red value. |
blue | float | The blue value. |
green | float | The green value. |
return | void |
public abstract DrawTransform ( Transform &transform ) : void | ||
transform | Transform | The transform. |
return | void |
public RemoveFlags ( DebugViewFlags flags ) : void | ||
flags | DebugViewFlags | The flags. |
return | void |