name | 唯一版本控制系统名称。 |
如果已激活 VCS,则bool 返回true;否则返回false。
设置激活的版本控制系统。
如果先前激活了不同的 VCS,则它将被停用。您可以使用 versionControlDescriptors 属性来检索所有可用的版本控制系统。您可以使用 activeVersionControlObject 属性来检查新激活的 VersionControlObject。
using UnityEditor; using UnityEditor.VersionControl; using UnityEngine;
static class Example { [MenuItem("Example/Set Custom VCS")] static void SetCustomVCS() { if (!VersionControlManager.SetVersionControl("Custom")) Debug.LogWarning("Failed to set custom VCS."); } }