↧
Answer by Polymo
dont use 'as', do it like (YourEnumType)EditorGUILayout.EnumPopup(x,x,x);
View ArticleAnswer by Bunny83
Like ValooFx said you have to use a "normal" cast. The as cast only works with reference types. An enum is a value type. script.movementSettings.runKey = (KeyCode)EditorGUILayout.EnumPopup("Run Key",...
View Article