This is called at each requestAnimationFrame call params : @callback (function) : a function to execute returns : @this: our plane to handle chaining
(callback)
| 590 | @this: our plane to handle chaining |
| 591 | ***/ |
| 592 | onRender(callback) { |
| 593 | if(callback) { |
| 594 | this._onRenderCallback = callback; |
| 595 | } |
| 596 | |
| 597 | return this; |
| 598 | } |
| 599 | |
| 600 | |
| 601 | /*** |
no outgoing calls
no test coverage detected