unreal.FloatInterval

class unreal.FloatInterval(min: float = 0.0, max: float = 0.0)

Bases: StructBase

An interval of floats, defined by inclusive min and max values note: This is a mirror of TInterval<float>, defined in Interval.h

C++ Source:

  • Module: CoreUObject

  • File: NoExportTypes.h

Editor Properties: (see get_editor_property/set_editor_property)

  • max (float): [Read-Write] Values must be <= Max

  • min (float): [Read-Write] Values must be >= Min

property max: float

[Read-Write] Values must be <= Max

Type:

(float)

property min: float

[Read-Write] Values must be >= Min

Type:

(float)