Exemple #1
0
        public static void EditorPersistentDataPathFileInspector(ref Settings.Setting _setting, int _configIndex)
        {
            GUILayout.BeginHorizontal();
            EditorGUI.BeginChangeCheck();
            bool b_binary = EditorGUILayout.Toggle("Binary", _setting.EditorConfigs[_configIndex].SaveSystemConfig.persistentDataPathFileBinary);

            if (EditorGUI.EndChangeCheck())
            {
                Undo.RecordObject(_setting, b_binary ? "Enable" : "Disable" + " binary on save system");
                _setting.EditorConfigs[_configIndex].SaveSystemConfig.persistentDataPathFileBinary = b_binary;
                EditorUtility.SetDirty(_setting);
            }
            GUILayout.EndHorizontal();

            GUILayout.BeginHorizontal();
            EditorGUI.BeginChangeCheck();
            bool b_checksum = EditorGUILayout.Toggle("Checksum", _setting.EditorConfigs[_configIndex].SaveSystemConfig.persistentDataPathFileChecksum);

            if (EditorGUI.EndChangeCheck())
            {
                Undo.RecordObject(_setting, b_binary ? "Enable" : "Disable" + " checksum on save system");
                _setting.EditorConfigs[_configIndex].SaveSystemConfig.persistentDataPathFileChecksum = b_checksum;
                EditorUtility.SetDirty(_setting);
            }
            GUILayout.EndHorizontal();

            GUILayout.BeginHorizontal();
            EditorGUI.BeginChangeCheck();
            PersistentDataPathFileShuffleTypes b_shuffleType = (PersistentDataPathFileShuffleTypes)(EditorGUILayout.EnumPopup("Shuffle", _setting.EditorConfigs[_configIndex].SaveSystemConfig.persistentDataPathFileShuffle));

            if (EditorGUI.EndChangeCheck())
            {
                Undo.RecordObject(_setting, "Change shuffle type on save system");
                _setting.EditorConfigs[_configIndex].SaveSystemConfig.persistentDataPathFileShuffle = b_shuffleType;
                EditorUtility.SetDirty(_setting);
            }
            GUILayout.EndHorizontal();
        }
Exemple #2
0
        public static Config ForPersistentDataPathFile <T>(bool binary = false, bool checksum = false, PersistentDataPathFileShuffleTypes shuffle = PersistentDataPathFileShuffleTypes.None) where T : Data <T>
        {
            Config b_saveSystemConfig = new Config();

            b_saveSystemConfig.configType = typeof(PersistentDataPathFile <T>);
            b_saveSystemConfig.persistentDataPathFileBinary   = binary;
            b_saveSystemConfig.persistentDataPathFileChecksum = checksum;
            b_saveSystemConfig.persistentDataPathFileShuffle  = shuffle;
            return(b_saveSystemConfig);
        }