Create a new ScriptComponent instance.
The ComponentSystem that created this Component.
The Entity that this Component is attached to.
The Entity that this Component is attached to.
The ComponentSystem used to create this Component.
Sets the enabled state of the component.
Sets the enabled state of the component.
Gets the array of all script instances attached to an entity.
Sets the array of all script instances attached to an entity. This array is read-only and should not be modified by developer.
Create a script instance and attach to an entity script component.
The name or type of Script.
Optional
args: { Object with arguments for a script.
Object with values for attributes (if any), where key is name of an attribute.
If script instance is enabled after creation. Defaults to true.
The index where to insert the script instance at. Defaults to -1, which means append it at the end.
If script instance is created during preload. If true, script and attributes must be initialized manually. Defaults to false.
Returns an instance of a ScriptType if successfully attached to an entity, or null if it failed because a script with a same name has already been added or if the ScriptType cannot be found by name in the ScriptRegistry.
Destroy the script instance that is attached to an entity.
The name or type of ScriptType.
If it was successfully destroyed.
Fire an event, all additional arguments are passed on to the event listener.
Name of event to fire.
Optional
arg1: anyFirst argument that is passed to the event handler.
Optional
arg2: anySecond argument that is passed to the event handler.
Optional
arg3: anyThird argument that is passed to the event handler.
Optional
arg4: anyFourth argument that is passed to the event handler.
Optional
arg5: anyFifth argument that is passed to the event handler.
Optional
arg6: anySixth argument that is passed to the event handler.
Optional
arg7: anySeventh argument that is passed to the event handler.
Optional
arg8: anyEighth argument that is passed to the event handler.
Self for chaining.
Get a script instance (if attached).
The name or type of ScriptType.
If script is attached, the instance is returned. Otherwise null is returned.
Detect if script is attached to an entity.
The name or type of ScriptType.
If script is attached to an entity.
Move script instance to different position to alter update order of scripts within entity.
The name or type of ScriptType.
New position index.
If it was successfully moved.
Detach an event handler from an event. If callback is not provided then all callbacks are unbound from the event, if scope is not provided then all events with the callback will be unbound.
Optional
name: stringName of the event to unbind.
Optional
callback: HandleEventCallbackFunction to be unbound.
Optional
scope: objectScope that was used as the this when the event is fired.
Self for chaining.
const handler = function () {
};
obj.on('test', handler);
obj.off(); // Removes all events
obj.off('test'); // Removes all events called 'test'
obj.off('test', handler); // Removes all handler functions, called 'test'
obj.off('test', handler, this); // Removes all handler functions, called 'test' with scope this
Attach an event handler to an event.
Name of the event to bind the callback to.
Function that is called when event is fired. Note the callback is limited to 8 arguments.
Optional
scope: object = ...Object to use as 'this' when the event is fired, defaults to current this.
Can be used for removing event in the future.
Attach an event handler to an event. This handler will be removed after being fired once.
Name of the event to bind the callback to.
Function that is called when event is fired. Note the callback is limited to 8 arguments.
Optional
scope: object = ...Object to use as 'this' when the event is fired, defaults to current this.
Static
EVENT_Fired when a ScriptType instance is created and attached to the script component. This event is available in two forms. They are as follows:
create
- Fired when a script instance is created. The name of the script type and the
script type instance are passed as arguments.create:[name]
- Fired when a script instance is created that has the specified script
type name. The script instance is passed as an argument to the handler.Static
EVENT_Fired when a ScriptType instance is destroyed and removed from the script component. This event is available in two forms. They are as follows:
destroy
- Fired when a script instance is destroyed. The name of the script type and
the script type instance are passed as arguments.destroy:[name]
- Fired when a script instance is destroyed that has the specified
script type name. The script instance is passed as an argument.Static
EVENT_Fired when the script component becomes disabled. This event does not take into account the enabled state of the entity or any of its ancestors.
Static
EVENT_Fired when the script component becomes enabled. This event does not take into account the enabled state of the entity or any of its ancestors.
Static
EVENT_Fired when a ScriptType instance had an exception. The handler is passed the script instance, the exception and the method name that the exception originated from.
Static
EVENT_Fired when the index of a ScriptType instance is changed in the script component. This event is available in two forms. They are as follows:
move
- Fired when a script instance is moved. The name of the script type, the script
type instance, the new index and the old index are passed as arguments.move:[name]
- Fired when a specifically named script instance is moved. The script
instance, the new index and the old index are passed as arguments.Static
EVENT_Fired when the script component has been removed from its entity.
Static
EVENT_Fired when the script component changes state to enabled or disabled. The handler is passed the new boolean enabled state of the script component. This event does not take into account the enabled state of the entity or any of its ancestors.
The ScriptComponent allows you to extend the functionality of an Entity by attaching your own Script Types defined in JavaScript files to be executed with access to the Entity. For more details on scripting see Scripting.