VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
override void AVR.UI.AVR_Canvas.OnDestroy ( )
inlinevirtual

Reimplemented from AVR.Core.AVR_Behaviour.

Definition at line 67 of file AVR_Canvas.cs.

68  {
69  if (all_canvases.Contains(this)) all_canvases.Remove(this);
70  if (active_canvases.Contains(this)) active_canvases.Remove(this);
71  }
static List< AVR_Canvas > active_canvases
A list of all AVR_Canvases that the user is currently interacting with. NOTE: This is not the same as...
Definition: AVR_Canvas.cs:38
static List< AVR_Canvas > all_canvases
A list of all AVR_Canvases that have at some point been active and not destroyed since ...
Definition: AVR_Canvas.cs:28