Version: 2020.3
言語: 日本語
public static ConfigField[] GetActiveConfigFields ();

説明

現在のアクティブなバージョン管理プラグインの Configuration フィールドを返します。

The task can be useful if, for example, you need to change the version control plugin's credentials.

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

public class EditorScript : MonoBehaviour { [MenuItem("Version Control/ConfigField")] public static void ExampleConfigField() { ConfigField[] exampleConfigField; exampleConfigField = Provider.GetActiveConfigFields(); EditorUserSettings.SetConfigValue(exampleConfigField[0].name, "username2"); Provider.UpdateSettings().Wait(); } }

The code above will fetch the currectly selected version control's config field names, change the first field to "username2" and update the version control settings.

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