Version: 2020.1
언어: 한국어

Provider.ResolveIsValid

매뉴얼로 전환
public static bool ResolveIsValid (VersionControl.AssetList assets);

파라미터

assets The list of asset to be resolved.

설명

Tests if any of the assets in the list have the conflicted state and can be resolved.

Returns true if one or more assets in the list are resolvable.

using System.Collections.Generic;
using UnityEditor;
using UnityEditor.VersionControl;
using UnityEngine;

public class EditorScript : MonoBehaviour { [MenuItem("Version Control/ResolveIsValid")] public static void ExampleResolveIsValid() { AssetList assets = new AssetList(); assets.Add(Provider.GetAssetByPath("Assets/ExampleAsset.cs")); bool valid = Provider.ResolveIsValid(assets); Debug.Log("Can the file be resolved?" + valid); } }