#質問内容
pixi.jsを用いて画面に画像を表示することをクラスを用いて一般化しようとしたのですがエラーが起こり上手くいきません。コンストラクタに配列を渡しているあたりで上手くいっていないと思われるのですが、コンストラクタに配列を渡すことはできないのでしょうか。また、それ以外の理由でエラーが起こっているのでしょうか。ご教授下さい。
#エラーメッセージ
error
1Uncaught TypeError: Cannot read property 'texture' of undefined 2 at new h (npm.js:261) 3 at Function.t.start (npm.js:1) 4 at window.onload (npm.js:261)
#コード
index
1import Manager from './manager'; 2 3window.onload = () => { 4 Manager.start({ 5 width: 1136, 6 height: 640, 7 option: 0x222222 8 }); 9}
manager
1import * as PIXI from 'pixi.js'; 2import Scene from './scene'; 3import Scene1 from './scene1'; 4 5export default class Manager { 6 public static game: PIXI.Application; 7 public static scene: Scene; 8 9 public static start(options: { 10 width: number, 11 height: number, 12 option: number 13 }): void { 14 this.game = new PIXI.Application({ 15 width: options.width, 16 height: options.height, 17 backgroundColor: options.option 18 }); 19 document.body.appendChild(this.game.view); 20 new Scene1(this.scene); 21 } 22}
scene
1import * as PIXI from 'pixi.js'; 2import Manager from './manager'; 3 4export default class Scene { 5 public container: PIXI.Container; 6 public texture: PIXI.Texture[]; 7 public sprite: PIXI.Sprite[]; 8 9 constructor(container: PIXI.Container, texture: PIXI.Texture[], sprite: PIXI.Sprite[]) { 10 this.container = container; 11 this.texture = texture; 12 this.sprite = sprite; 13 } 14 15 public static appendScene(scene: Scene) { 16 Manager.game.stage.addChild(scene.container); 17 for (let i = 0; i < scene.sprite.length; i++) { 18 scene.container.addChild(scene.sprite[i]); 19 } 20 } 21}
scene1
1import * as PIXI from 'pixi.js'; 2import Scene from './scene'; 3 4export default class Scene1 { 5 constructor(scene: Scene) { 6 scene = new Scene(new PIXI.Container(), 7 [ 8 PIXI.Texture.from('./assets/animalface_kangaroo.png'), 9 PIXI.Texture.from('./assets/animalface_kirin.png') 10 ], 11 [ 12 new PIXI.Sprite(scene.texture[0]), 13 new PIXI.Sprite(scene.texture[1]) 14 ] 15 ); 16 Scene.appendScene(scene); 17 } 18}
#環境
package
1 "devDependencies": { 2 "@types/pixi.js": "^5.0.0", 3 "ts-loader": "^8.0.3", 4 "tslint": "^6.1.3", 5 "tslint-config-airbnb": "^5.11.2", 6 "typedoc": "^0.19.0", 7 "typescript": "^4.0.2", 8 "webpack": "^4.44.1", 9 "webpack-cli": "^3.3.12", 10 "webpack-dev-server": "^3.11.0" 11 }, 12 "dependencies": { 13 "pixi.js": "^5.3.3" 14 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/04 02:50
2020/09/04 02:52
2020/09/04 03:19