# RangedFloat

A float between two values, which can be randomized or fixed.

- Kind: struct
- Assembly: `Sandbox.System`
- Modifiers: sealed

## Constructors

- [`RangedFloat`](/api/RangedFloat/.ctor): Initialize the float as a fixed value.

## Fields

- [`x`](/api/RangedFloat/x)
- [`y`](/api/RangedFloat/y)

## Properties

- [`FixedValue`](/api/RangedFloat/FixedValue): The fixed value. Setting this will convert us to a fixed value
- [`Max`](/api/RangedFloat/Max): The maximum value of the float range. For [RangedFloat.RangeType.Fixed](/api/RangedFloat.RangeType/Fixed), this will be the same as [RangedFloat.Min](/api/RangedFloat/Min).
- [`Min`](/api/RangedFloat/Min): The minimum value of the float range.
- [`Range`](/api/RangedFloat/Range): Range type of this float.
- [`RangeValue`](/api/RangedFloat/RangeValue): The range value. Setting this will convert us to a range value

## Methods

- [`Deconstruct`](/api/RangedFloat/Deconstruct)
- [`GetValue`](/api/RangedFloat/GetValue): Returns the final value of this ranged float, randomizing between min and max values.
- [`Parse`](/api/RangedFloat/Parse): Parse a ranged float from a string. Format is `"min[ max]"`.
