Version: 2020.1
언어: 한국어

Provider.GetActivePlugin

매뉴얼로 전환
public static VersionControl.Plugin GetActivePlugin ();

설명

Gets the current, user selected verson control Plugin.

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

public class EditorScript : MonoBehaviour { [MenuItem("Version Control/GetActivePlugin")] public static void ExampleGetActivePlugin() { Plugin plugin; plugin = Provider.GetActivePlugin(); Debug.Log(plugin.name); } }

The code above fetches the name of the currently used version control system.