Skip to content

Commit f26a487

Browse files
PaulDemeulenaereGitHub Enterprise
authored andcommitted
Revert "Fix Enum Flag" (#15)
1 parent 4c49282 commit f26a487

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

com.unity.visualeffectgraph/CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8686
- Remove some shader warnings
8787
- Fixed Sample Flipbook Texture File Names
8888
- Don't lose SRP output specific data when SRP package is not present
89-
- Support of flag settings in model inspector
9089

9190
## [7.1.1] - 2019-09-05
9291
### Added

com.unity.visualeffectgraph/Editor/Inspector/VFXSlotContainerEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public virtual void DoInspectorGUI()
7171
prop.Value.stringValue = strings[result];
7272
}
7373
}
74-
else if (prop.Key.FieldType.IsEnum && prop.Key.FieldType.GetCustomAttributes(typeof(FlagsAttribute), false).Length == 0)
74+
else if(prop.Key.FieldType.IsEnum)
7575
{
7676
GUIContent[] enumNames = null;
7777
int[] enumValues = null;

0 commit comments

Comments
 (0)