Show / Hide Table of Contents

Class DuneMonoBehaviour

A MonoBehaviour wrapper that can receive Events.

Inheritance
System.Object
DuneMonoBehaviour
Implements
IEventCompatible
Namespace: DuneNet.Server
Assembly: DuneNet.Server.dll
Syntax
public abstract class DuneMonoBehaviour : MonoBehaviour, IEventCompatible

Methods

OnAwake()

Overridable method called when the instance is being loaded.

Declaration
protected virtual void OnAwake()

OnFixedUpdate()

Overridable method called every fixed framerate frame, if the DuneMonobehaviour is enabled.

Declaration
protected virtual void OnFixedUpdate()

OnLateUpdate()

Overridable method called every frame, if the DuneMonobehaviour is enabled.

Declaration
protected virtual void OnLateUpdate()

OnStart()

Overridable method called on the frame when the instance is enabled just before any of the Update methods is called the first time.

Declaration
protected virtual void OnStart()

OnUpdate()

Overridable method called called every frame, if the DuneMonobehaviour is enabled.

Declaration
protected virtual void OnUpdate()

RegisterEventInstance()

Declaration
public void RegisterEventInstance()

Implements

IEventCompatible
Back to top Copyright © 2018 Dune Interactive.