Summary
A rule that defines which values are valid.
- Assembly
- Animancer
.dll - Namespace
- Animancer
- Base Types
-
- Enum
graph BT
Type-->Base0["Enum"]
Type["Validate.Value"]
class Type type-node
Syntax
public enum Validate.Value
Fields
Name | Constant Value | Summary |
---|---|---|
Any | 0 |
Any value is allowed.
static
|
IsFinite | 3 |
Infinity and NaN are not allowed.
static
|
IsFiniteOrNaN | 4 |
Infinity is not allowed.
static
|
IsNotNegative | 2 |
Only 0 or positive values are allowed.
static
|
ZeroToOne | 1 |
Only values between 0 (inclusive) and 1 (inclusive) are allowed.
static
|