new ScriptBase(context, object3D, variables)#
Skeleton of a game context script, different Context.EVENT
are trigger by Context
Parameters:
- Source
Members#
context :Context#
context of this script
Type:
- Source
object3D :Object3D#
object3D attach to this script
Type:
- Source
variables :object#
custom variables attach to this script
Type:
- object
- Source
(static) DEFAULT_VARIABLES#
- Source
Methods#
applyCommandCallbackOf(type, callback)#
Parameters:
Name | Type | Description |
---|---|---|
type | string | type of command treated |
callback | CommandCallback | callback to apply to command |
- Source
init()#
call after object3D load and register in collision system
- Source
isColliding(object3D)#
call if object3D is not static and is colliding a static object3D (object3D must have Collider
)
Parameters:
Name | Type | Description |
---|---|---|
object3D | Object3D | object3D collided |
- Source
load() → {Promise}#
call after object3D controllers initialized
- Source
Returns:
- promise when object3D has loaded
- Type:
- Promise
onEnterCollision(object3D)#
call if object3D is not static and first collide a static object3D (object3D must have Collider
)
Parameters:
Name | Type | Description |
---|---|---|
object3D | Object3D | object3D collided |
- Source
onLeaveCollision(object3D)#
call if object3D is not static and was colliding a static object3D (object3D must have Collider
)
Parameters:
Name | Type | Description |
---|---|---|
object3D | Object3D | object3D collided leaving |
- Source
tick()#
call every step
- Source