Graphics RenderingRender NodesEffekNodeOn this pageEffekNode Description: A class for playing Effekseer effects. Class Object: EffekNode Class. Inherits from: Node. play Type: Function. Description: Plays an Effekseer effect. Signature: play: function(self: EffekNode, filename: string, pos?: Vec2, z?: number): integer Parameters: ParameterTypeDescriptionfilenamestringThe filename of the effect.posVec2[optional] The XY position to play the effect at.znumber[optional] The Z position to play the effect at. Returns: Return TypeDescriptionintegerThe handle of the effect. stop Type: Function. Description: Stops an Effekseer effect. Signature: stop: function(self: EffekNode, handle: integer) Parameters: ParameterTypeDescriptionhandleintegerThe handle of the effect. onEffekEnd Type: Function. Description: Registers a callback for when an Effekseer effect has ended. Signature: onEffekEnd: function(self: EffekNode, callback: function(handle: integer)) Parameters: ParameterTypeDescriptioncallbackfunctionThe callback function for when the effect has ended.