A particle class
new ()
Creates a new particle
fire (options:FireOptions):Void
Fires this particle with given options
Parameters:
null
options
add_component (component:Component):Void
Add a component to this Entity
* @param component Component to be added to this entity
add_tag (tag:String):Void
Add tag to this Entity
* @param tag tag name
get_component (name:String):Null<Component>
Get component with name
* @param name component name * @return Null<Component>
inlineget_name ():String
returns the name of this Entity
* @return String
inlinehas_tag (tag:String):Bool
Checks whether or not this Entity has a tag
* @param tag tag name * @return Bool
remove_component (name:String):Void
Remove a component from this Entity
* @param name the component's name