diff --git a/docs/zh/manuals/atlas.md b/docs/zh/manuals/atlas.md
index db9dd826..b4de0baf 100644
--- a/docs/zh/manuals/atlas.md
+++ b/docs/zh/manuals/atlas.md
@@ -44,7 +44,7 @@ sprites 通常使用单个的小图片, 但是处于性能考虑, 最好把小
![Creating an atlas, adding images](images/atlas/add_animation.png){srcset="images/atlas/add_animation@2x.png 2x"}
- 选中动画组后按 空格键 即可预览动画. 动画 *Properties* 可以自由修改 (见下文).
+ 选中动画组后按 空格键 即可预览动画, Ctrl/Cmd+T 关闭预览. 动画 *Properties* 可以自由修改 (见下文).
![Animation group](images/atlas/animation_group.png){srcset="images/atlas/animation_group@2x.png 2x"}
diff --git a/docs/zh/manuals/editor-keyboard-shortcuts.md b/docs/zh/manuals/editor-keyboard-shortcuts.md
index 3e00d91c..05675933 100644
--- a/docs/zh/manuals/editor-keyboard-shortcuts.md
+++ b/docs/zh/manuals/editor-keyboard-shortcuts.md
@@ -99,6 +99,9 @@ brief: 本教程介绍了当前编辑器快捷键以及如何自定义快捷键.
| Switch to next tab | Ctrl+Tab | Ctrl+Tab | Ctrl+Tab |
| Switch to previous tab | Shift+Ctrl+Tab | Shift+Ctrl+Tab | Shift+Ctrl+Tab |
| Tab | Tab | Tab | Tab |
+| Tilemap brush clockwise rotation | Z | Z | Z |
+| Tilemap brush horizontal flipping | X | X | X |
+| Tilemap brush vertical flipping | Y | Y | Y |
| Toggle breakpoint | F9 | F9 | F9 |
| Toggle comment | Ctrl+Slash | Cmd+Slash | Ctrl+Slash |
| Toggle component guides | Ctrl+H | Ctrl+Cmd+H | Ctrl+H |
diff --git a/docs/zh/manuals/project-settings.md b/docs/zh/manuals/project-settings.md
index 46a8b8b6..fbb69d8b 100644
--- a/docs/zh/manuals/project-settings.md
+++ b/docs/zh/manuals/project-settings.md
@@ -480,7 +480,10 @@ Google Cloud Messaging Sender Id. 此值由 Google 签发, 设置后才能开启
如果开启, 则隐藏导航条和状态条并且让你的应用获取屏幕上所有触碰信息.
#### Debuggable
-指定应用是否可以使用诸如 [GAPID](https://github.com/google/gapid) 或者 [Android Studio](https://developer.android.com/studio/profile/android-profiler) 之类的工具来调试. 这将开启 Android manifest 的 `android:debuggable` 选项.
+指定应用是否可以使用诸如 [GAPID](https://github.com/google/gapid) 或者 [Android Studio](https://developer.android.com/studio/profile/android-profiler) 之类的工具来调试. 这将开启 Android manifest 的 `android:debuggable` 选项 ([官方文档](https://developer.android.com/guide/topics/manifest/application-element#debug)).
+
+#### Extract Native Libs
+指定是否让包安装器把原生库从 APK 提取到文件系统里. 如果设置为 `false`, 你的原生库会以非压缩形态保存在 APK 中. 这样 APK 可能会更大, 但你的应用会载入更快因为运行时直接从 APK 加载库. 这会在安卓清单中设置 `android:extractNativeLibs` 标志 ([官方文档](https://developer.android.com/guide/topics/manifest/application-element#extractNativeLibs)). 默认为 `true`.
---
diff --git a/docs/zh/manuals/tilemap.md b/docs/zh/manuals/tilemap.md
index c380efd1..35631f1f 100644
--- a/docs/zh/manuals/tilemap.md
+++ b/docs/zh/manuals/tilemap.md
@@ -34,6 +34,8 @@ brief: 本教程介绍了 Defold 对于瓷砖地图的支持.
你可以直接从层里选择一块瓷砖当作笔刷. 按住 Shift 键点击瓷砖即可把它用作当前笔刷. 按住 Shift 键并拖动还可以选择一片瓷砖作为大笔刷.
+笔刷顺时针旋转快捷键 Z. 笔刷水平翻转快捷键 X, 笔刷垂直翻转快捷键 Y.
+
![选取瓷砖](images/tilemap/pick_tiles.png){srcset="images/tilemap/pick_tiles@2x.png 2x"}
## 把瓷砖地图加入到游戏中