【代码】组合新行为

前言

关卡攻略

源代码

1
2
3
4
5
6
7
8
9
10
11
12
13
func turnRight() {
turnLeft()
turnLeft()
turnLeft()
}
moveForward()
moveForward()
moveForward()
turnRight()
moveForward()
moveForward()
moveForward()
collectGem()

完成