(_scene)
| 2 | // get and set Phaser.Scene.Anims list |
| 3 | export default class SrcManager { |
| 4 | constructor(_scene) { |
| 5 | this.textureList = this.initTextureList(_scene); |
| 6 | this.textureKeyList = this.initTextureKeyList(this.textureList); |
| 7 | this.animList = this.initAnimList(_scene); |
| 8 | this.animKeyList = this.initAnimKeyList(this.animList); |
| 9 | } |
| 10 | initTextureList(_scene) { |
| 11 | let tmpTL = _scene.textures.list; |
| 12 | return tmpTL; |
nothing calls this directly
no test coverage detected