(frames, frameOffset)
| 293 | } |
| 294 | |
| 295 | mapFrames (frames, frameOffset) { |
| 296 | if (!_.isString(frames)) { return frames } // don't accidentally do this again |
| 297 | return (Array.from(frames.split(',')).map((f) => parseInt(f, 10) + frameOffset)) |
| 298 | } |
| 299 | |
| 300 | finishBuild () { |
| 301 | if (_.isEmpty(this.builder._animations)) { return } |
no outgoing calls
no test coverage detected