Version: 2023.2
public void OnDeactivate ();

描述

Called when your version control system is deactivated.

This happens when the user selects a different VCS from Version Control settings window, or if it gets deactivated from script, or when the Editor is closed.

Unity calls this method to inform VersionControlObject that it's no longer active and VCS operations such as checkout or submit should no longer be performed.

using UnityEditor.VersionControl;
using UnityEngine;

[VersionControl("Custom")] public class CustomVersionControlObject : VersionControlObject { public override void OnActivate() { Debug.Log("Custom VCS activated."); }

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