質問編集履歴
1
*部分を追記いたしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -67,3 +67,29 @@
|
|
67
67
|
|
68
68
|
|
69
69
|
どなたかご教授くださると幸いです。
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
*追記いたします。
|
74
|
+
|
75
|
+
例えば下記のようなコードでpolygonShapeを作るとします。その際に、最終行のVertexCountの値がundefinedになるので、vertexCountを設定しなくてはならないはずですが、console.log(polygonShape)をコンソールにて調べても、メソッドとして、vertexCount()が見当たらないのです。
|
76
|
+
|
77
|
+
vertexCountを設定するためには、vertexCount()というメソッドがあらかじめpolygonShapeに登録されている必要があると思うのですが・・・・。
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
let polygonShape = new b2PolygonShape()
|
82
|
+
|
83
|
+
console.log(polygonShape);
|
84
|
+
|
85
|
+
console.log(polygonShape.GetVertexCount());
|
86
|
+
|
87
|
+
for(i=0;i<3;i++){
|
88
|
+
|
89
|
+
polygonShape.m_vertices[i] = vertices[i];
|
90
|
+
|
91
|
+
}
|
92
|
+
|
93
|
+
console.log(polygonShape);
|
94
|
+
|
95
|
+
console.log(polygonShape.GetVertexCount());
|