瀏覽代碼

Update hello_simpleapplication.adoc

mitm001 8 年之前
父節點
當前提交
986b914b44
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/docs/asciidoc/jme3/beginner/hello_simpleapplication.adoc

+ 1 - 1
src/docs/asciidoc/jme3/beginner/hello_simpleapplication.adoc

@@ -224,7 +224,7 @@ A typical JME3 game has the following initialization process:
 === The Future of SimpleApplication
 
 
-There are plans to change the SimpleApplication in the future. Sometime back it was decided that we should really re-factor the Application class. SimpleApplication especially is a mess of 'magic' protected fields that on the one hand makes it really easy to slam some simple one-class application together, but on the other hand does new users no favors because they have no idea where 'cam' and 'assetManager' come from. Unfortunately, lots of code refers to Application and it's tough to change... especially the app states.
+There are plans to change SimpleApplication. Sometime back it was decided that we should really re-factor the Application class. SimpleApplication especially is a mess of 'magic' protected fields that on the one hand makes it really easy to slam some simple one-class application together, but on the other hand does new users no favors because they have no idea where 'cam' and 'assetManager' come from. Unfortunately, lots of code refers to Application and it's tough to change... especially the app states.
 
 So, we hatched a plan to convert the Application class to an interface. This would give us some freedom to iterate on a new set of application base classes. You can read about the changes link:https://hub.jmonkeyengine.org/t/jmonkeyengine-3-1-alpha-4-released/35478[here]. As said before we are envisioning a better design that is not enforced today, but that is already usable.