瀏覽代碼

attribute test.

mitm 5 年之前
父節點
當前提交
6ff0e7839a
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/docs/asciidoc/jme3/advanced/application_states.adoc

+ 2 - 2
src/docs/asciidoc/jme3/advanced/application_states.adoc

@@ -188,9 +188,9 @@ public class MyAppState extends AbstractAppState {
 
 
 == BaseAppState
+https://javadoc.jmonkeyengine.org/v3.3.0-beta1/index.html?com/jme3/app/state/BaseAppState.html
 
-
-A new link:{link-javadoc}/app/state/BaseAppState.html[BaseAppState] class was introduced as part of the link:https://hub.jmonkeyengine.org/t/jmonkeyengine-3-1-alpha-4-released/35478[updates] being made to the AppState interface. AbstractAppState is the most minimal of the minimal implementations of the AppState interface. You essentially still need to do everything yourself, including getting the funky enable/disable/initialized/terminate logic right. Now you just extend BaseAppState and you get onEnable() and onDisable() already worked out for you.
+A new link:{link-javadoc}/com/jme3/app/state/BaseAppState.html[BaseAppState] class was introduced as part of the link:https://hub.jmonkeyengine.org/t/jmonkeyengine-3-1-alpha-4-released/35478[updates] being made to the AppState interface. AbstractAppState is the most minimal of the minimal implementations of the AppState interface. You essentially still need to do everything yourself, including getting the funky enable/disable/initialized/terminate logic right. Now you just extend BaseAppState and you get onEnable() and onDisable() already worked out for you.
 
 Definition: