(animation, action)
| 667 | } |
| 668 | |
| 669 | getContainersForAnimation (animation, action) { |
| 670 | const rawAnimation = this.get('raw').animations[animation] |
| 671 | if (!rawAnimation) { |
| 672 | console.error('thang type', this.get('name'), 'is missing animation', animation, 'from action', action) |
| 673 | } |
| 674 | let { containers } = rawAnimation |
| 675 | for (animation of Array.from(this.get('raw').animations[animation].animations)) { |
| 676 | containers = containers.concat(this.getContainersForAnimation(animation.gn, action)) |
| 677 | } |
| 678 | return containers |
| 679 | } |
| 680 | |
| 681 | getContainersForActions (actionNames) { |
| 682 | const containersToRender = {} |
no test coverage detected