下記の提示コードですがクラスとオブジェクトがありますがゲーム開発ではどう使い分けるのでしょうか?ゲームループを階層化する際に自分はクラスを使ってループしているのですが
参考サイト オブジェクト: https://developer.mozilla.org/ja/docs/Learn/JavaScript/Objects/Basics
参考サイト クラス: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Classes
js
1function setup() 2{ 3 createCanvas(640,480); 4} 5 6 7 8 9 10const person = 11{ 12 name: ['Bob', 'Smith'], 13 age: 32, 14 gender: 'male', 15 interests: ['music', 'skiing'], 16 bio: function() { 17 alert(this.name[0] + ' ' + this.name[1] + ' is ' + this.age + ' years old. He likes ' + this.interests[0] + ' and ' + this.interests[1] + '.'); 18 }, 19 greeting: function() { 20 alert('Hi! I\'m ' + this.name[0] + '.'); 21 } 22}; 23 24class test 25{ 26 constructor() 27 { 28 29 } 30 31 test() 32 { 33 console.log("あああ\n"); 34 } 35}; 36 37function draw() 38{ 39 background(51); 40 41 ellipse(10,10,20,30); 42}
回答1件
あなたの回答
tips
プレビュー