docs: update tutorial

This commit is contained in:
dntzhang 2019-08-19 12:24:45 +08:00
parent 5fe51e5d17
commit 822574361d
1 changed files with 2 additions and 0 deletions

View File

@ -406,6 +406,8 @@ class Snake {
}
```
蛇的转向有个逻辑,就是不能反方向后退,比如正在向上移动,不能直接直接向下转向,所以在 `turnUp`,`turnRight`,`turnDown`,`turnLeft` 中都有对应的条件判断。
### 使用代码描述游戏实体
```js