mitm 7 anni fa
parent
commit
49ad9d5773
1 ha cambiato i file con 7 aggiunte e 5 eliminazioni
  1. 7 5
      src/docs/asciidoc/sdk/project_creation.adoc

+ 7 - 5
src/docs/asciidoc/sdk/project_creation.adoc

@@ -25,11 +25,10 @@ The jMonkeyEngine SDK makes it easy to get started with developing 3-D games bas
 
 === Project Structure
 
-[.right]
-image::sdk/jmonkeyplatform-docu-4.png[jmonkeyplatform-docu-4.png,width="421",height="298"]
+image::sdk/jmonkeyplatform-docu-4.png[jmonkeyplatform-docu-4.png,width="421",height="298",align="center"]
 
 
-Let's have a look at the abstract project structure in the Project Explorer (kbd:[Ctrl]+kbd:[1]).
+Let's have a look at the abstract project structure in the Project Explorer. (kbd:[Ctrl]+kbd:[1]).
 
 *  *Project Assets node:* These directories have been created for you to store your games assets, such as fonts, materials, models, shaders, sounds, and textures. For a newly created project, these directories are empty.
 *  *Source Packages node:* This is where you manage your packages and classes. For a newly created project, it contains one package and one class, `Main.java`. Double click `Main.java` to open it in the editor.
@@ -40,7 +39,10 @@ Let's have a look at the abstract project structure in the Project Explorer (kbd
 
 Now let's have a look at the project's file structure in the File Explorer (kbd:[Ctrl]+kbd:[2]). This explorer shows the physical directory structure on your hard drive.
 
-*  *assets* – This directory corresponds to the Project Assets node. It is needed for the assetManager. This is the recommended internal structure:
+*  *assets* – This directory corresponds to the Project Assets node. It is needed for the assetManager.
++
+This is the recommended internal structure:
+
 **  `assets/Interface`
 **  `assets/MatDefs`
 **  `assets/Materials`
@@ -75,7 +77,7 @@ Now let's have a look at the project's file structure in the File Explorer (kbd:
 === Clean, Build and Run Cycle
 
 
-image::sdk/jmonkeyplatform-docu-5.png[jmonkeyplatform-docu-5.png,width="421",height="298",align="right"]
+image::sdk/jmonkeyplatform-docu-5.png[jmonkeyplatform-docu-5.png,width="421",height="298",align="center"]
 
 
 [IMPORTANT]