-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
141 lines (134 loc) · 6.96 KB
/
mkdocs.yml
File metadata and controls
141 lines (134 loc) · 6.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
site_name: Mountea Framework Docs
site_url: https://mountea.tools/docs/
docs_dir: docs_src
site_dir: docs
theme:
name: material
custom_dir: overrides
favicon: ../assets/icon.png
logo: ../assets/icon.png
palette:
scheme: slate
primary: black
accent: cyan
features:
- navigation.instant
- navigation.sections
- navigation.top
- search.highlight
- search.suggest
- content.code.annotate
- content.tabs.link
- content.action.edit
- toc.integrate
- content.code.copy
- mermaid
nav:
- Home: index.md
- Projects:
- Dialogue System:
- Home: DialogueSystem/home.md
- Getting Started:
- First Steps: DialogueSystem/GettingStarted/FirstSteps.md
- Configuration: DialogueSystem/GettingStarted/PluginConfiguration.md
- Dialogue Manager: DialogueSystem/GettingStarted/SetupDialogueManager.md
- Dialogue Participant: DialogueSystem/GettingStarted/SetupDialogueParticipant.md
- Create New Dialogue: DialogueSystem/GettingStarted/CreateDialogueAsset.md
- Start Dialogue: DialogueSystem/GettingStarted/StartDialogue.md
- Dialogue Flow: DialogueSystem/GettingStarted/DialogueFlow.md
- Dialogue Editor:
- Dialogue Tree Editor: DialogueSystem/DialogueEditor/DialogueEditor.md
- Import Dialogue: DialogueSystem/DialogueEditor/ImportDialogue.md
- Dialogue Nodes:
- Dialogue Node Intro: DialogueSystem/DialogueNodes/DialogueNode.md
- Start Node: DialogueSystem/DialogueNodes/StartNode.md
- Lead Node: DialogueSystem/DialogueNodes/LeadNode.md
- Answer Node: DialogueSystem/DialogueNodes/AnswerNode.md
- Complete Node: DialogueSystem/DialogueNodes/CompleteNode.md
- Return To Node: DialogueSystem/DialogueNodes/ReturnToNode.md
- Delay Node: DialogueSystem/DialogueNodes/DelayNode.md
- Custom Node: DialogueSystem/DialogueNodes/CustomNode.md
- Dialogue Decorators:
- Dialogue Decorator Intro: DialogueSystem/DialogueDecorators/DialogueDecorator.md
- Only First Time (Base): DialogueSystem/DialogueDecorators/OnlyFirstTimeBase.md
- Override Only First Time: DialogueSystem/DialogueDecorators/OverrideOnlyFristTime.md
- Override Dialogue Participants: DialogueSystem/DialogueDecorators/OverrideDialogueParticipants.md
- Override Dialogue Row Data: DialogueSystem/DialogueDecorators/OverrideDialogueRowData.md
- Select Random Dialogue Row: DialogueSystem/DialogueDecorators/SelectRandomDialogueRow.md
- Send Command: DialogueSystem/DialogueDecorators/SendCommand.md
- Set Node As Start: DialogueSystem/DialogueDecorators/SetNodeAsStart.md
- Swap Participants: DialogueSystem/DialogueDecorators/SwapParticipants.md
- Dialoguer:
- Home: Dialoguer/home.md
- Getting Started:
- First Steps: Dialoguer/GettingStarted/FirstSteps.md
- New Project: Dialoguer/GettingStarted/CreateNewProject.md
- Creating Nodes: Dialoguer/GettingStarted/CreatingNodes.md
- New Project: Dialoguer/GettingStarted/CreateNewProject.md
- Dialogue Row Data: Dialoguer/GettingStarted/CreatingDialogueRows.md
- Export Dialogue: Dialoguer/GettingStarted/ExportingDialogue.md
- Advanced Inventory & Equipment System:
- Overview: AdvancedInventoryEquipmentSystem/Overview.md
- Architecture:
- System Architecture: AdvancedInventoryEquipmentSystem/Architecture/SystemArchitecture.md
- Configuration:
- Intro: AdvancedInventoryEquipmentSystem/Configuration/IntroToConfiguration.md
- First Steps: AdvancedInventoryEquipmentSystem/Configuration/FirstSteps.md
- Inventory System:
- Overview: AdvancedInventoryEquipmentSystem/InventorySystem/InventorySystem.md
- Inventory Component: AdvancedInventoryEquipmentSystem/InventorySystem/InventoryComponent.md
- Item Templates: AdvancedInventoryEquipmentSystem/InventorySystem/ItemTemplates.md
- Item Instances: AdvancedInventoryEquipmentSystem/InventorySystem/ItemInstances.md
- Item Actions: AdvancedInventoryEquipmentSystem/InventorySystem/ItemActions.md
- Search & Filtering: AdvancedInventoryEquipmentSystem/InventorySystem/Search.md
- Notifications: AdvancedInventoryEquipmentSystem/InventorySystem/Notifications.md
- Equipment System:
- Overview: AdvancedInventoryEquipmentSystem/EquipmentSystem/EquipmentSystem.md
- Attachment Containers: AdvancedInventoryEquipmentSystem/EquipmentSystem/AttachmentContainers.md
- Attachment Slots: AdvancedInventoryEquipmentSystem/EquipmentSystem/AttachmentSlots.md
- Attachable Component: AdvancedInventoryEquipmentSystem/EquipmentSystem/AttachableComponents.md
- Loadout Configuration: AdvancedInventoryEquipmentSystem/EquipmentSystem/LoadoutConfiguration.md
- Equipment Component: AdvancedInventoryEquipmentSystem/EquipmentSystem/EquipmentComponent.md
- Trading System:
- Overview: AdvancedInventoryEquipmentSystem/TradingSystem/TBD.md
- Crafting System:
- Overview: AdvancedInventoryEquipmentSystem/CraftingSystem/TBD.md
- User Interface:
- Overview: AdvancedInventoryEquipmentSystem/UserInterface/UserInterface.md
- Inventory UI Component: AdvancedInventoryEquipmentSystem/UserInterface/InventoryUIComponent.md
- Grid System: AdvancedInventoryEquipmentSystem/UserInterface/GridSystem.md
- Item Widgets: AdvancedInventoryEquipmentSystem/UserInterface/ItemWidgets.md
- Item Preview: AdvancedInventoryEquipmentSystem/UserInterface/ItemPreview.md
- Slate Elements: AdvancedInventoryEquipmentSystem/UserInterface/SlateElements.md
- K2Nodes:
- Intro to K2Nodes: AdvancedInventoryEquipmentSystem/K2Nodes/IntroToK2Nodes.md
- Get Property By Name: AdvancedInventoryEquipmentSystem/K2Nodes/K2Node_GetPropertyByName.md
- Set Property By Name: AdvancedInventoryEquipmentSystem/K2Nodes/K2Node_SetPropertyByName.md
- Switch on Command: AdvancedInventoryEquipmentSystem/K2Nodes/K2Node_SwitchOnCommand.md
- Switch on Input Tag: AdvancedInventoryEquipmentSystem/K2Nodes/K2Node_SwitchOnInputTag.md
- Tags: Tags.md
extra_css:
- stylesheets/custom.css
extra_javascript:
- javascripts/extra.js
plugins:
- tags
- search
- meta
markdown_extensions:
- admonition
- attr_list
- def_list
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
toc_depth: 2
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format