The Flock
0.00.001
|
Network debug viewer, which shows the network debug information on screen. More...
Public Member Functions | |
override void | Awake () |
Awake is called when the script instance is being loaded. More... | |
override void | Update () |
Update is called every frame. More... | |
override void | OnGUI () |
OnScreen GUI. More... | |
override void | drawWindow (int windowID) |
Draws the window. More... | |
![]() | |
virtual void | onResize () |
onResize is being called when the screen size is being changed. More... | |
![]() | |
virtual void | Start () |
Start is called just before any of the Update methods is called the first time. More... | |
virtual void | LateUpdate () |
LateUpdate is called every frame after all Update functions have been called. More... | |
virtual void | FixedUpdate () |
This function is called every fixed framerate frame. More... | |
virtual void | OnDrawGizmos () |
OnDraw Gizmos. More... | |
virtual void | OnDrawGizmosSelected () |
OnDraw Gizmos selected. More... | |
virtual void | OnEnable () |
This function is called when the object becomes enabled and active. More... | |
virtual void | OnDisable () |
This function is called when the behaviour becomes disabled or inactive. More... | |
virtual void | OnBecameVisible () |
OnBecameVisible is called when the renderer became visible by any camera. More... | |
virtual void | OnBecameInvisible () |
OnBecameInvisible is called when the renderer is no longer visible by any camera. More... | |
virtual void | OnDestroy () |
This function is called before the gameobject is been destroyed. More... | |
I | GetInterfaceComponent< I > () |
Gets the interface component. More... | |
void | logDebug (string message) |
void | logWarning (string message) |
void | logError (string message) |
Additional Inherited Members | |
![]() | |
static List< I > | FindObjectsOfInterface< I > () |
Finds the objects of interface. More... | |
![]() | |
Rect | _windowRect |
string | _windowName |
![]() | |
string | windowName [get] |
Gets the name of the window. More... | |
Network debug viewer, which shows the network debug information on screen.
|
virtual |
Awake is called when the script instance is being loaded.
Reimplemented from AbstractWindow.
|
virtual |
|
virtual |
OnScreen GUI.
Reimplemented from AbstractWindow.
|
virtual |
Update is called every frame.
Reimplemented from AbstractMonoBehaviour.