Browse Source

Filenames match page titles

master
Christopher 8 years ago
parent
commit
1295318837
  1. 2
      Docs/fungus_docs/about_fungus.md
  2. 0
      Docs/fungus_docs/code_of_conduct.md
  3. 2
      Docs/fungus_docs/community_tutorials.md
  4. 2
      Docs/fungus_docs/conversation_system.md
  5. 2
      Docs/fungus_docs/glossary.md
  6. 2
      Docs/fungus_docs/installation.md
  7. 2
      Docs/fungus_docs/narrative_text_tags.md
  8. 4
      Docs/fungus_lua.md
  9. 2
      Docs/fungus_lua/lua_about_fungus_lua.md
  10. 2
      Docs/fungus_lua/lua_controlling_fungus.md
  11. 0
      Docs/fungus_lua/lua_create_menu.md
  12. 2
      Docs/fungus_lua/lua_execute_lua.md
  13. 4
      Docs/fungus_lua/lua_fungus_module.md
  14. 0
      Docs/fungus_lua/lua_unity_test_tools.md
  15. 16
      Docs/mainpage.md

2
Docs/fungus_docs/about.md → Docs/fungus_docs/about_fungus.md

@ -1,4 +1,4 @@
# About %Fungus {#about} # About %Fungus # {#about_fungus}
[TOC] [TOC]
# What is Fungus? # {#what_is_fungus} # What is Fungus? # {#what_is_fungus}

0
Docs/fungus_docs/conduct.md → Docs/fungus_docs/code_of_conduct.md

2
Docs/fungus_docs/articles.md → Docs/fungus_docs/community_tutorials.md

@ -1,4 +1,4 @@
# Community Articles # {#articles} # Community tutorials # {#community_tutorials}
[TOC] [TOC]
If you've created an article or video about %Fungus let us know on the forum and we'll add it here. If you've created an article or video about %Fungus let us know on the forum and we'll add it here.

2
Docs/fungus_docs/conversation.md → Docs/fungus_docs/conversation_system.md

@ -1,4 +1,4 @@
# Conversation system # {#conversation} # Conversation system # {#conversation_system}
[TOC] [TOC]
The Say and Portrait commands are a powerful way to build character dialogue, but it can be tedious to add large amounts of dialogue this way. The Say and Portrait commands are a powerful way to build character dialogue, but it can be tedious to add large amounts of dialogue this way.

2
Docs/fungus_docs/glossary.md

@ -1,4 +1,4 @@
# Glossary of terms {#glossary} # Glossary {#glossary}
<!-- ------------------------ --> <!-- ------------------------ -->
<!-- ---------- A ----------- --> <!-- ---------- A ----------- -->

2
Docs/fungus_docs/install.md → Docs/fungus_docs/installation.md

@ -1,4 +1,4 @@
# Installation # {#install} # Installation # {#installation}
[TOC] [TOC]
This page explains how to download and install Unity and %Fungus. This page explains how to download and install Unity and %Fungus.

2
Docs/fungus_docs/narrative_parser_tokens.md → Docs/fungus_docs/narrative_text_tags.md

@ -1,4 +1,4 @@
# Narrative Parser Tags # {#narrative_tags} # Narrative Text Tags # {#narrative_text_tags}
The following tokens can be used within Story Text to do things such as change the styling of text or clear the contents of a dialog area on input and much more. You can see this list in the editor by pressing the Tag Help button in the Say command. The following tokens can be used within Story Text to do things such as change the styling of text or clear the contents of a dialog area on input and much more. You can see this list in the editor by pressing the Tag Help button in the Say command.

4
Docs/fungus_lua.md

@ -2,7 +2,7 @@
FungusLua is a simple way to embed Lua scripting into your Unity project. Lua is an easy to learn scripting language so it's a great way to empower artists, writers and designers to use more of the power of Unity. FungusLua is a simple way to embed Lua scripting into your Unity project. Lua is an easy to learn scripting language so it's a great way to empower artists, writers and designers to use more of the power of Unity.
* @subpage lua_overview * @subpage lua_about_funguslua
* @subpage lua_create_menu * @subpage lua_create_menu
* @subpage lua_environment * @subpage lua_environment
* @subpage lua_bindings * @subpage lua_bindings
@ -10,7 +10,7 @@ FungusLua is a simple way to embed Lua scripting into your Unity project. Lua is
* @subpage lua_utils * @subpage lua_utils
* @subpage lua_fungus_module * @subpage lua_fungus_module
* @subpage lua_controlling_fungus * @subpage lua_controlling_fungus
* @subpage execute_lua * @subpage lua_execute_lua
* @subpage lua_preferences * @subpage lua_preferences
* @subpage lua_store * @subpage lua_store
* @subpage lua_string_table * @subpage lua_string_table

2
Docs/fungus_lua/lua_overview.md → Docs/fungus_lua/lua_about_fungus_lua.md

@ -1,4 +1,4 @@
# What is FungusLua? # {#lua_overview} # About FungusLua # {#lua_about_funguslua}
[TOC] [TOC]
FungusLua is a simple way to embed Lua scripting into your Unity project. Lua is an easy to learn scripting language so it's a great way to empower artists, writers and designers to use more of the power of Unity. FungusLua is a simple way to embed Lua scripting into your Unity project. Lua is an easy to learn scripting language so it's a great way to empower artists, writers and designers to use more of the power of Unity.

2
Docs/fungus_lua/lua_controlling_fungus.md

@ -1,4 +1,4 @@
# Controlling Fungus # {#lua_controlling_fungus} # Controlling %Fungus # {#lua_controlling_fungus}
[TOC] [TOC]
The %Fungus module provides several functions for working with the standard %Fungus narrative features and flowcharts. The %Fungus module provides several functions for working with the standard %Fungus narrative features and flowcharts.

0
Docs/fungus_lua/create_menu.md → Docs/fungus_lua/lua_create_menu.md

2
Docs/fungus_lua/execute_lua.md → Docs/fungus_lua/lua_execute_lua.md

@ -1,4 +1,4 @@
# ExecuteLua Command # {#execute_lua} # ExecuteLua Command # {#lua_execute_lua}
[TOC] [TOC]
This command allows you to embed a Lua script to be executed as part of a command sequence in a Block. The Lua script to be executed can be specified in the inspector or in a text file, in the same way as the @ref lua_script component. This command allows you to embed a Lua script to be executed as part of a command sequence in a Block. The Lua script to be executed can be specified in the inspector or in a text file, in the same way as the @ref lua_script component.

4
Docs/fungus_lua/lua_fungus_module.md

@ -1,7 +1,7 @@
# Fungus Lua Module # {#lua_fungus_module} # %Fungus Lua Module # {#lua_fungus_module}
[TOC] [TOC]
The Fungus Lua module provides handy functions for working with Lua, Unity and %Fungus. It is located in FungusLua/Resources/Lua/Fungus.txt and is loaded automatically when you use the Lua Script component. The %Fungus Lua module provides handy functions for working with Lua, Unity and %Fungus. It is located in FungusLua/Resources/Lua/Fungus.txt and is loaded automatically when you use the Lua Script component.
In this page we cover some of the more generic functionality in the module, other major features are described elsewhere in the documentation. In this page we cover some of the more generic functionality in the module, other major features are described elsewhere in the documentation.

0
Docs/fungus_lua/unity_test_tools.md → Docs/fungus_lua/lua_unity_test_tools.md

16
Docs/mainpage.md

@ -4,20 +4,20 @@ Welcome to the documentation website for Fungus, the open source visual storytel
There's a wide range of training material available here, suitable for both beginner and experienced game developers. There's a wide range of training material available here, suitable for both beginner and experienced game developers.
* @subpage about "What is Fungus?" * @subpage about_fungus
* @subpage training_course "Fungus Training Course" * @subpage training_course
* @subpage tutorial_videos "Tutorial videos" * @subpage tutorial_videos
* @subpage install "Installation instructions" * @subpage installation
* @subpage getting_started * @subpage getting_started
* @subpage flowcharts * @subpage flowcharts
* @subpage blocks * @subpage blocks
* @subpage telling_a_story * @subpage telling_a_story
* @subpage playing_audio * @subpage playing_audio
* @subpage conversation * @subpage conversation_system
* @subpage articles "Community tutorials" * @subpage community_tutorials
* @subpage narrative_tags * @subpage narrative_text_tags
* @subpage glossary * @subpage glossary
* @subpage faq Frequently Asked Questions * @subpage faq
* @subpage code_of_conduct * @subpage code_of_conduct
[community forum]: http://fungusgames.com/forum [community forum]: http://fungusgames.com/forum

Loading…
Cancel
Save