Enum StringAndNumberConstrain
Defines a valid comparison
Namespace: UnityEditor.PixyzPlugin4Unity.Actions
Assembly: Unity.Pixyz.Plugin4Unity.Editor.dll
Syntax
public enum StringAndNumberConstrain
Fields
Name | Description |
---|---|
Any | Does not matter |
Contains | If the matching string contains the name |
DoesNotContain | If the matching string doesn't contain the name |
EndsWith | Suffix |
IsEqualTo | If the matching string is strictly equal to the name |
IsGreaterOrEqualTo | Interpretation as number |
IsGreaterThan | Interpretation as number |
IsLowerOrEqualTo | Interpretation as number |
IsLowerThan | Interpretation as number |
IsNotEqualTo | If the matching string is strictly not equal to the name |
Regex | Custom regular expression |
StartsWith | Prefix |