Version: 2020.1
LanguageEnglish
  • C#

Provider.UnlockIsValid

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static bool UnlockIsValid(VersionControl.AssetList assets);
public static bool UnlockIsValid(VersionControl.Asset asset);

Parameters

assets The asset list to test.
asset The asset to test.

Description

Returns true if unlocking the assets is a valid operation.

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

public class EditorScript : MonoBehaviour { [MenuItem("Version Control/UnlockIsValid")] public static void ExampleUnlockIsValid() { AssetList assets = new AssetList(); assets.Add(Provider.GetAssetByPath("Assets/ExampleAsset.cs")); Debug.Log(Provider.UnlockIsValid(assets)); } }

Did you find this page useful? Please give it a rating: