an easing that acts on an element or an array of elements
    
    
    
    
    
        
| Name | Type | Description | 
|---|---|---|
element | 
            
            
            PIXI.DisplayObject | Array.<PIXI.DisplayObject> | |
params | 
            
            
            object | |
options | 
            
            
            object | 
Fires:
Extends
Classes
Members
- 
    
    number of parameters being eased
 - 
    
    element(s) being eased
 
Methods
- 
    
    Calls each of the listeners registered for a given event.
Name Type Description eventString | Symbol The event name. Returns:
Type Description Boolean `true` if the event had listeners, else `false`.  - 
    
    Return an array listing the events for which the emitter has registered listeners.
Returns:
Type Description Array  - 
    
    Return the number of listeners listening to a given event.
Name Type Description eventString | Symbol The event name. Returns:
Type Description Number The number of listeners.  - 
    
    Return the listeners registered for a given event.
Name Type Description eventString | Symbol The event name. Returns:
Type Description Array The registered listeners.  - 
    
once (event, fn, context)EventEmitter inherited overrides
 - 
    
    Add a one-time listener for a given event.
Name Type Default Description eventString | Symbol The event name. fnfunction The listener function. context* this optional The context to invoke the listener with. Returns:
Type Description EventEmitter `this`.  - 
    
on (event, fn, context)EventEmitter inherited overrides
 - 
    
    Add a listener for a given event.
Name Type Default Description eventString | Symbol The event name. fnfunction The listener function. context* this optional The context to invoke the listener with. Returns:
Type Description EventEmitter `this`.  - 
    
    remove all easings with matching element and params
Name Type Description elementPIXI.DisplayObject optional if not set, removes all elements in this easing paramsstring | Array.<string> optional if not set, removes all params for each element  - 
    
removeAllListeners (event)EventEmitter inherited overrides
 - 
    
    Remove all listeners, or those of the specified event.
Name Type Description eventString | Symbol optional The event name. Returns:
Type Description EventEmitter `this`.  - 
    
removeListener (event, fn, context, once)EventEmitter inherited overrides
 - 
    
    Remove the listeners of a given event.
Name Type Description eventString | Symbol The event name. fnfunction Only remove the listeners that match this function. context* Only remove the listeners that have this context. onceBoolean Only remove one-time listeners. Returns:
Type Description EventEmitter `this`.