if enemy.position.x == 1 to 200 && enemy.position.y == 1 to 200 {
//do sth
}
所以如果敌人在x:1 - 200,y:1 - 200的字段中,它应该运行代码。
有人可以帮助我,谢谢; D
答案 0 :(得分:0)
您可以将contains
与ClosedRange
:
if (1...200).contains(enemy.position.x) && (1...200).contains(enemy.position.y) {
// do sth
}
或者您可以使用~=
:
if 1...200 ~= enemy.position.x && 1...200 ~= enemy.position.y {
// do sth
}