Version: 2020.2
言語: 日本語
public static bool SubmitIsValid (VersionControl.ChangeSet changeset, VersionControl.AssetList assets);

パラメーター

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)); } }