GameEntities.CutSceneManager.OnDestroy C# (CSharp) Method

OnDestroy() protected method

Overridden from Engine.EntitySystem.Entity.OnDestroy().
protected OnDestroy ( ) : void
return void
        protected override void OnDestroy()
        {
            base.OnDestroy();

            if( instance == this )//for undo support
                instance = null;
        }