Enum StringConstrain
Defines a valid comparison
Namespace: UnityEditor.PixyzPlugin4Unity.Actions
Assembly: Unity.Pixyz.Plugin4Unity.Editor.dll
Syntax
public enum StringConstrain
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 |
IsNotEqualTo | If the matching string is strictly not equal to the name |
Regex | Custom regular expression |
StartsWith | Prefix |