Quellcode durchsuchen

attribute test.

mitm vor 5 Jahren
Ursprung
Commit
6ff0e7839a
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  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: