Skip to content

Commit

Permalink
Add excel-tables.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hoontee committed Dec 1, 2023
1 parent 6a22afa commit aed4be7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ export default defineConfig({
{ text: 'Script Directives', link: '/lync/project-format/files/script-directives' },
{ text: 'Init Scripts', link: '/lync/project-format/files/init-scripts' },
{ text: 'Meta Files', link: '/lync/project-format/files/meta-files' },
{ text: 'JSON Models', link: '/lync/project-format/files/json-models' }
{ text: 'JSON Models', link: '/lync/project-format/files/json-models' },
{ text: 'Excel Tables', link: '/lync/project-format/files/excel-tables' }
]
},
{ text: 'Sourcemap', link: '/lync/project-format/sourcemap' }
Expand Down
4 changes: 4 additions & 0 deletions docs/lync/project-format/files/excel-tables.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Excel Tables
::: danger UNFINISHED
This documentation is unfinished.
:::
5 changes: 1 addition & 4 deletions docs/lync/project-format/files/supported-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,11 @@ All forms of Roblox content can be stored on the filesystem and synced.
| JSON Objects | `JSON` | [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript) |
| YAML Objects | `YAML` | [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript) |
| TOML Objects | `TOML` | [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript) |
| Excel Sheets | `XLSX`/`XLS` | [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript) |
| Text Document | `TXT` | [StringValue](https://create.roblox.com/docs/reference/engine/classes/StringValue) |
| Localization Table | `CSV` | [LocalizationTable](https://create.roblox.com/docs/reference/engine/classes/LocalizationTable) |
| Child Projects | `*.Project.JSON` | Varies |
| JSON Models | `*.Model.JSON` | Varies |
| Init Scripts (Anonymous) | `Init.LUA` / `LUAU` | [LuaSourceContainer](https://create.roblox.com/docs/reference/engine/classes/LuaSourceContainer) * |
| Init Scripts (Named) | `*.Init.LUA` / `LUAU` | [LuaSourceContainer](https://create.roblox.com/docs/reference/engine/classes/LuaSourceContainer) * |
| Meta Files | `*.Meta.JSON` / `YAML` / `TOML` | - |
| Excel Tables | `*.Excel.JSON` | [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript) |

\* Can be [ModuleScript](https://create.roblox.com/docs/reference/engine/classes/ModuleScript), [Script](https://create.roblox.com/docs/reference/engine/classes/Script), or [LocalScript](https://create.roblox.com/docs/reference/engine/classes/LocalScript) depending on the script run context directive.

Expand Down

0 comments on commit aed4be7

Please sign in to comment.