What is it ?

Component System

A component is a logical program use to do something in your game.

Each component has some functions made to update, initiate or call for special events during the runtime.

Component is the only thing you gonna code to change or add new gameplay systems

How component call functions ?

How create my Component ?

To create a new component, follow these instructions :

Create new one

List of basic functions

checkComponentValidityonAwakeonStartonUpdateonFixedUpdateonDisplay

List of event functions

onDestroy [EVENT]onGameQuit [EVENT]onDisable [EVENT]onEnable [EVENT]onMouseEnter [EVENT]onMouseStay [EVENT]onMouseExit [EVENT]onTriggerEnter [EVENT]onTriggerStay [EVENT]onTriggerExit [EVENT]

Last updated