Przeglądaj źródła

attribute test.

mitm 5 lat temu
rodzic
commit
6ff0e7839a

+ 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: