changeset | サブミットするチェンジセット |
assets | 送信するアセット |
アセットを送信するのが有効な操作の場合、True を返します。
Do note that the task will always return true if the changeset parameter is set to an existing changeset.
using System.Collections.Generic; using UnityEditor; using UnityEditor.VersionControl; using UnityEngine;
public class EditorScript : MonoBehaviour { [MenuItem("Version Control/SubmitIsValid")] public static void ExampleSubmitIsValid() { AssetList assets = new AssetList(); assets.Add(Provider.GetAssetByPath("Assets/ExampleAsset.cs")); Debug.Log(Provider.SubmitIsValid(null, assets)); } }