Пример #1
0
 public BoolBuildSettingEntry(BoolBuildSettingEntry other)
     : base(other)
 {
     Value = other.Value;
 }
Пример #2
0
        void DrawBool(BoolBuildSettingEntry entry)
        {
            BoolEnum b = entry.Value ? BoolEnum.Yes : BoolEnum.No;

            EditorGUILayout.LabelField(b.ToString());
        }