Przeglądaj źródła

add config files

mitm001 5 lat temu
rodzic
commit
f4ac10bb69
3 zmienionych plików z 95 dodań i 0 usunięć
  1. 6 0
      docs/antora.yml
  2. 45 0
      docs/modules/ROOT/nav.adoc
  3. 44 0
      jmedocs-playbook.yml

+ 6 - 0
docs/antora.yml

@@ -0,0 +1,6 @@
+name: docs
+title: Docs
+version: master
+start_page: ROOT:jme3.adoc
+nav:
+- modules/ROOT/nav.adoc

+ 45 - 0
docs/modules/ROOT/nav.adoc

@@ -0,0 +1,45 @@
+* <<documentation#,Getting Started>>
+* {link-javadoc}[JavaDoc]
+* <<jme3#,jMonkeyEngine 3>>
+** Beginner Tutorials
+*** <<jme3/beginner/hello_simpleapplication#,Hello SimpleApplication>>
+*** <<jme3/beginner/hello_node#,Hello Node>>
+*** <<jme3/beginner/hello_asset#,Hello Asset>>
+*** <<jme3/beginner/hello_main_event_loop#,Hello Main Event Loop>>
+*** <<jme3/beginner/hello_input_system#,Hello Input System>>
+*** <<jme3/beginner/hello_material#,Hello Material>>
+*** <<jme3/beginner/hello_animation#,Hello Animation>>
+*** <<jme3/beginner/hello_picking#,Hello Picking>>
+*** <<jme3/beginner/hello_collision#,Hello Collision>>
+*** <<jme3/beginner/hello_terrain#,Hello Terrain>>
+*** <<jme3/beginner/hello_audio#,Hello Audio>>
+*** <<jme3/beginner/hello_effects#,Hello Effects>>
+*** <<jme3/beginner/hello_physics#,Hello Physics>>
+** Intermediate Tutorials
+*** Concepts
+**** <<jme3/intermediate/best_practices#,Best Practices>>
+**** <<jme3/intermediate/simpleapplication#,Simple Application>>
+**** <<jme3/features#,Features>>
+**** <<jme3/intermediate/optimization#,Optimization>>
+**** <<jme3/faq#,FAQ>>
+*** Math Concepts
+**** <<jme3/math_for_dummies#,Math For Dummies>>
+**** <<jme3/intermediate/math#,Math>>
+**** <<jme3/math#,More Math>>
+**** <<jme3/rotate#,Rotate>>
+**** <<jme3/math_video_tutorials#,Math Video Tutorials>>
+*** 3D Graphics Concepts
+**** <<jme3/intermediate/multi-media_asset_pipeline#,Multi-Media Asset Pipeline>>
+**** <<jme3/scenegraph_for_dummies#,Scenegraph for Dummies>>
+**** <<jme3/beginner/hellovector#,Hello Vector>>
+**** <<jme3/terminology#,Terminology>>
+**** <<jme3/intermediate/how_to_use_materials#,How to Use Materials>>
+**** <<jme3/intermediate/transparency_sorting#,Transparency and Sorting>>
+**** <<jme3/external/blender#,Importing from Blender>>
+**** <<jme3/external/3dsmax#,Importing from 3DS Max>>
+* <<logo#,Logo Usage>>
+* <<bsd_license#,License>>
+* <<github_tips#,Github Tips>>
+
+.SDK
+* <<sdk#,jMonkeyEngine SDK>>

+ 44 - 0
jmedocs-playbook.yml

@@ -0,0 +1,44 @@
+site:
+  title: jMonkeyEngine Docs
+  url: https://wiki.jmonkeyengine.org
+  robots: disallow
+  start_page: docs::documentation.adoc
+content:
+  sources:
+  - url: .
+    branches: [antora-setup]
+    start_path: docs
+  - url: https://github.com/jMonkeyEngine/wiki-ui
+    branches: HEAD
+    start_path: docs
+ui:
+  bundle:
+    url: https://github.com/jMonkeyEngine/wiki-ui/releases/latest/download/ui-bundle.zip
+    # Required when using cache or fetch will not update ui.
+    snapshot: true
+asciidoc:
+  # Some built-in AsciiDoc attributes are not applicable in the Antora
+  # environment. These attributes include data-uri, allow-uri-read, docinfo,
+  # linkcss, noheader, nofooter, webfonts, and outfilesuffix.
+  attributes:
+    # previous and next page navigation, uses nav.adoc
+    page-pagination: ''
+    idprefix: ''
+    idseparator: '-'
+    #add an <orgname> element
+    orgname: 'jMonkeyEngine'
+    # Site wide setting of javaDoc url. Soft set using '@' allows override at
+    # component and page level.
+    link-javadoc: 'https://javadoc.jmonkeyengine.org/v3.3.2-stable@'
+    # Enables the UI macros (button, menu and kbd)
+    experimental: ''
+    # Adds an anchor in front of the section title when the mouse cursor hovers
+    # over it.
+    :sectanchors: ''
+  extensions:
+  # Twitter Emoji
+  # see: https://github.com/Mogztter/asciidoctor-emoji
+  - asciidoctor-emoji
+runtime:
+  cache_dir: ./.cache/antora
+  fetch: true