unreal.DoubleInterval

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

Bases: StructBase

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

C++ Source:

  • Module: CoreUObject

  • File: NoExportTypes.h

Editor Properties: (see get_editor_property/set_editor_property)

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

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

property max: float

[Read-Write] Values must be <= Max

Type:

(double)

property min: float

[Read-Write] Values must be >= Min

Type:

(double)