Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


OnInspectorGUI()

Allows you to add custom GUI controls to the version control settings in the inspector.
Read time 1 minuteLast updated 13 days ago

Definition

void OnInspectorGUI()

Remarks

using UnityEditor;using UnityEditor.VersionControl;[VersionControl("Custom")]public class CustomVersionControlObject : VersionControlObject, ISettingsInspectorExtension{ public void OnInspectorGUI() { var oldUsername = EditorUserSettings.GetConfigValue("vcCustomUsername"); var newUsername = EditorGUILayout.TextField("Username:", oldUsername); if (newUsername != oldUsername) EditorUserSettings.SetConfigValue("vcCustomUsername", newUsername); }}