Version: 2021.3
public static VersionControl.Task Checkout (string asset, VersionControl.CheckoutMode mode);
public static VersionControl.Task Checkout (string asset, VersionControl.CheckoutMode mode, VersionControl.ChangeSet changeset);
public static VersionControl.Task Checkout (string[] assets, VersionControl.CheckoutMode mode);
public static VersionControl.Task Checkout (string[] assets, VersionControl.CheckoutMode mode, VersionControl.ChangeSet changeset);
public static VersionControl.Task Checkout (Object asset, VersionControl.CheckoutMode mode, VersionControl.ChangeSet changeset);
public static VersionControl.Task Checkout (Object asset, VersionControl.CheckoutMode mode);
public static VersionControl.Task Checkout (Object[] assets, VersionControl.CheckoutMode mode);
public static VersionControl.Task Checkout (Object[] assets, VersionControl.CheckoutMode mode, VersionControl.ChangeSet changeset);

参数

assets 要签出的资源列表。
asset 要签出的资源。
mode Tell the Provider to checkout just the asset file, the .meta file or both.
changeset Tell the Provider to checkout the assets to a specific changeset.

描述

Checkout an asset or a list of assets from the version control system.

Some version control systems like Perforce or Plastic SCM require an asset to be checked out before it can be edited.

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

public class EditorScript : MonoBehaviour { [MenuItem("Version Control/Checkout")] public static void ExampleCheckout() { AssetList assets = new AssetList(); assets.Add(Provider.GetAssetByPath("Assets/ExampleAsset.cs")); ChangeSet changeset = new ChangeSet("Description", "1111"); Task t = Provider.Checkout(assets, CheckoutMode.Both, changeset); t.Wait(); } }

The code above will checkout the "ExampleAsset.cs" asset and move it to a changeset with an ID of "1111".

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961