Răsfoiți Sursa

Merge branch 'master' of https://github.com/defold/doc

Björn Ritzl 4 ani în urmă
părinte
comite
7a77a2cd2c

+ 1 - 1
docs/en/manuals/addressing.md

@@ -143,7 +143,7 @@ For example, suppose that you want an AI manager that tracks the state of each b
 
 ![manager object](images/addressing/manager_editor.png)
 
-Each bean is then responsible for sending status messages to the manager: "contact" if it spots an enemy or "ouch!" if it is hit and takes damage. For this to work, the bean controller scrips use absolute addressing to send messages to the component "controller" in "manager".
+Each bean is then responsible for sending status messages to the manager: "contact" if it spots an enemy or "ouch!" if it is hit and takes damage. For this to work, the bean controller script uses absolute addressing to send messages to the component "controller" in "manager".
 
 Any address that starts with a '/' will be resolved from the root of the game world. This corresponds to the root of the *bootstrap collection* that is loaded on game start.
 

+ 2 - 2
docs/en/shared/linux-faq.md

@@ -78,8 +78,8 @@ $ MESA_LOADER_DRIVER_OVERRIDE=i965 ./Defold
 A: The [libffi](https://sourceware.org/libffi/) version of your distribution and the one required by Defold (version 6 or 7) does not match. Make sure `libffi.so.6` or `libffi.so.7` is installed under `/usr/lib/x86_64-linux-gnu`. You can download `libffi.so.7` like this:  
 
 ```bash
-$ wget http://ftp.br.debian.org/debian/pool/main/libf/libffi/libffi7_3.3-5_amd64.deb
-$ sudo dpkg -i libffi7_3.3-5_amd64.deb
+$ wget http://ftp.br.debian.org/debian/pool/main/libf/libffi/libffi7_3.3-6_amd64.deb
+$ sudo dpkg -i libffi7_3.3-6_amd64.deb
 ```
 
 Next you specify the path to this version in the `LD_PRELOAD` environment variable when running Defold:

+ 2 - 2
docs/zh/shared/linux-faq.md

@@ -71,8 +71,8 @@ A: 这是由于Linux系统的 [libffi](https://sourceware.org/libffi/) 版本与
 确保 `libffi.so.6` 或 `libffi.so.7` 已安装在 `/usr/lib/x86_64-linux-gnu` 路径下. 可以使用如下命令下载 `libffi.so.7`:
 
 ```bash
-$ wget http://ftp.br.debian.org/debian/pool/main/libf/libffi/libffi7_3.3-5_amd64.deb
-$ sudo dpkg -i libffi7_3.3-5_amd64.deb
+$ wget http://ftp.br.debian.org/debian/pool/main/libf/libffi/libffi7_3.3-6_amd64.deb
+$ sudo dpkg -i libffi7_3.3-6_amd64.deb
 ```
 
 然后需要在环境变量 `LD_PRELOAD` 中指定安装路径再启动 Defold: