質問編集履歴
2
タイトルの変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
swiftのvelocityで速度を測
|
1
|
+
swiftのvelocityで速度を測れない
|
test
CHANGED
File without changes
|
1
タイトルとプログラムの変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
velocityで速度を測るには
|
1
|
+
swiftのvelocityで速度を測るには
|
test
CHANGED
@@ -212,10 +212,20 @@
|
|
212
212
|
|
213
213
|
}
|
214
214
|
|
215
|
+
```
|
216
|
+
|
217
|
+
```
|
218
|
+
|
219
|
+
ここで速度を測る
|
220
|
+
|
221
|
+
|
222
|
+
|
215
|
-
|
223
|
+
func didBegin(_ contact: SKPhysicsContact){
|
216
224
|
|
217
225
|
if (contact.bodyA.categoryBitMask < mimo.physicsBody!.categoryBitMask){
|
218
226
|
|
227
|
+
//ここで速度が0になったか確認する
|
228
|
+
|
219
229
|
if (mimo.physicsBody?.velocity == CGVector(dx:0.0, dy:0.0)){
|
220
230
|
|
221
231
|
mimo.size = CGSize(width:300,height:150)
|
@@ -224,7 +234,7 @@
|
|
224
234
|
|
225
235
|
}
|
226
236
|
|
227
|
-
}
|
237
|
+
}
|
228
238
|
|
229
239
|
}
|
230
240
|
|