您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
34 行
1.4 KiB
34 行
1.4 KiB
using UnityEditor;
|
|
using UnityEngine;
|
|
namespace ParrelSync
|
|
{
|
|
/// <summary>
|
|
/// For preventing assets being modified from the clone instance.
|
|
/// </summary>
|
|
public class ParrelSyncAssetModificationProcessor : UnityEditor.AssetModificationProcessor
|
|
{
|
|
public static string[] OnWillSaveAssets(string[] paths)
|
|
{
|
|
if (ClonesManager.IsClone() && Preferences.AssetModPref.Value)
|
|
{
|
|
if (paths != null && paths.Length > 0 && !EditorQuit.IsQuiting)
|
|
{
|
|
EditorUtility.DisplayDialog(
|
|
ClonesManager.ProjectName + ": Asset modifications saving detected and blocked",
|
|
"Asset modifications saving are blocked in the clone instance. \n\n" +
|
|
"This is a clone of the original project. \n" +
|
|
"Making changes to asset files via the clone editor is not recommended. \n" +
|
|
"Please use the original editor window if you want to make changes to the project files.",
|
|
"ok"
|
|
);
|
|
foreach (var path in paths)
|
|
{
|
|
Debug.Log("Attempting to save " + path + " are blocked.");
|
|
}
|
|
}
|
|
return new string[0] { };
|
|
}
|
|
return paths;
|
|
}
|
|
}
|
|
}
|