Björn Ritzl 5 年 前
コミット
84373bd039

+ 4 - 4
docs/en/shared/android-faq.md

@@ -1,8 +1,8 @@
-Is it possible to hide the navigation and status bars on Android?
-: Yes, set the *immersive_mode* setting in the *Android* section of your *game.project* file. This lets your app take over the whole screen and capture all touch events on the screen.
+Q: Is it possible to hide the navigation and status bars on Android?
+: A: Yes, set the *immersive_mode* setting in the *Android* section of your *game.project* file. This lets your app take over the whole screen and capture all touch events on the screen.
 
-I'm getting "Failure [INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES]" when installing
-: Android detects that you try to install the app with a new certificate. When bundling debug builds, each build will be signed with a temporary certificate. Uninstall the old app before installing the new version:
+Q: Why am I'm getting "Failure [INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES]" when installing a Defold game on device?
+: A: Android detects that you try to install the app with a new certificate. When bundling debug builds, each build will be signed with a temporary certificate. Uninstall the old app before installing the new version:
 
   ```
   $ adb uninstall com.defold.examples

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

@@ -1,6 +1,6 @@
-Why does my HTML5-app freeze at the splash screen in Chrome?
+Q: Why does my HTML5-app freeze at the splash screen in Chrome?
 
-: In some cases it is not possible to run a game in the browser locally from the filesystem. Running from the editor serves the game from a local web server. You can, for instance, use SimpleHTTPServer in Python:
+: A: In some cases it is not possible to run a game in the browser locally from the filesystem. Running from the editor serves the game from a local web server. You can, for instance, use SimpleHTTPServer in Python:
 
   ```sh
   $ python -m SimpleHTTPServer [port]

+ 15 - 17
docs/en/shared/linux-faq.md

@@ -1,23 +1,24 @@
-The Defold editor is super small when run on a 4k or HiDPI monitor when using GNOME.
+Q: Why is the Defold editor super small when run on a 4k or HiDPI monitor when using GNOME?
 
-: Change the scaling factor before running Defold (https://unix.stackexchange.com/a/552411)
+: A: Change the scaling factor before running Defold (https://unix.stackexchange.com/a/552411)
+
+  ```
+  $ gsettings set org.gnome.desktop.interface scaling-factor 2
+  ```
 
-```
-$ gsettings set org.gnome.desktop.interface scaling-factor 2
-```
 
+Q: Why does mouse clicks on Elementary OS go through the editor onto whatever is below?
 
-Mouse clicks on Elementary OS go through the editor onto whatever is below.
+: A: Start the editor like this:
 
-: Start the editor like this:
+  ```
+  $ GTK_CSD=0 ./Defold
+  ```
 
-```
-$ GTK_CSD=0 ./Defold
-```
 
-When I try to create a new project, or open an existing one, the editor crashes.
+Q: Why does the Defold editor crash when I try to create a new project, or open an existing one?
 
-: On certain distributions (like Ubuntu 18) there is an issue with the version of jogamp/jogl Defold uses vs. the version of Mesa on the system.
+: A: On certain distributions (like Ubuntu 18) there is an issue with the version of jogamp/jogl Defold uses vs. the version of Mesa on the system.
 
   See the following reports for more information:
 
@@ -31,13 +32,10 @@ When I try to create a new project, or open an existing one, the editor crashes.
   $ ./Defold
   ```
 
-I can't create a new branch for my project on Linux.
-
-: Make sure that you have *libssl 0.9.8* installed on your machine. Some distributions come with a later version, but Defold needs version *0.9.8*.
 
-When I try to run my game on Linux, the engine doesn't start.
+Q: Why doesn't my Defold game start when I try to run it on Linux?
 
-: Check the console output in the editor. If you get the following message:
+: A: Check the console output in the editor. If you get the following message:
 
   ```
   dmengine: error while loading shared libraries: libopenal.so.1: cannot open shared object file: No such file or directory

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

@@ -1,3 +1,3 @@
-Why are GUI box nodes without a texture transparent in the editor but show up as expected when I build and run?
+Q: Why are GUI box nodes without a texture transparent in the editor but show up as expected when I build and run?
 
-: This error can happen on [computers using AMD Radeon GPUs](https://github.com/defold/editor2-issues/issues/2723). Make sure to update your graphics drivers.
+: A: This error can happen on [computers using AMD Radeon GPUs](https://github.com/defold/editor2-issues/issues/2723). Make sure to update your graphics drivers.