unreal.DrawDebugGraphAxesSettings

class unreal.DrawDebugGraphAxesSettings(title: str = '', title_settings: DrawDebugStringSettings = Ellipsis, xaxis_label: str = '', yaxis_label: str = '', axis_arrow_settings: DrawDebugArrowSettings = Ellipsis, axis_label_settings: DrawDebugStringSettings = Ellipsis, draw_axes_box: bool = False)

Bases: StructBase

Settings for debug drawing graphs axes

C++ Source:

  • Plugin: DrawDebugLibrary

  • Module: DrawDebugLibrary

  • File: DrawDebugLibrary.h

Editor Properties: (see get_editor_property/set_editor_property)

  • axis_arrow_settings (DrawDebugArrowSettings): [Read-Write] Settings for the axis arrows

  • axis_label_settings (DrawDebugStringSettings): [Read-Write] Settings for the axis labels

  • draw_axes_box (bool): [Read-Write] Draws the axes as a box instead of two arrows

  • title (str): [Read-Write] Title of the graph

  • title_settings (DrawDebugStringSettings): [Read-Write] Settings for the title

  • xaxis_label (str): [Read-Write] Label for the X axis

  • yaxis_label (str): [Read-Write] Label for the Y axis

property axis_arrow_settings: DrawDebugArrowSettings

[Read-Write] Settings for the axis arrows

Type:

(DrawDebugArrowSettings)

property axis_label_settings: DrawDebugStringSettings

[Read-Write] Settings for the axis labels

Type:

(DrawDebugStringSettings)

property draw_axes_box: bool

[Read-Write] Draws the axes as a box instead of two arrows

Type:

(bool)

property title: str

[Read-Write] Title of the graph

Type:

(str)

property title_settings: DrawDebugStringSettings

[Read-Write] Settings for the title

Type:

(DrawDebugStringSettings)

property xaxis_label: str

[Read-Write] Label for the X axis

Type:

(str)

property yaxis_label: str

[Read-Write] Label for the Y axis

Type:

(str)