From 40c41b440009ede7bc022ca60badc18e408e8809 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Sat, 26 May 2018 16:41:38 -0700 Subject: [PATCH] Update Sync Details docs to mention how JSON models work. Closes #71. --- docs/sync-details.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/sync-details.md b/docs/sync-details.md index 40dfb285..21448fc0 100644 --- a/docs/sync-details.md +++ b/docs/sync-details.md @@ -26,13 +26,16 @@ Will turn into these instances in Roblox: ![Example of Roblox instances](/images/sync-example.png) ## Models -Rojo supports a JSON model format for representing simple models. It's designed for instance types like `BindableEvent` or `*Value` objects, and is not suitable for larger models. +Rojo supports a JSON model format for representing simple models. It's designed for instance types like `BindableEvent` or `Value` objects, and is not suitable for larger models. + +Rojo JSON models are stored in `.model.json` files. !!! info In the future, Rojo will support `.rbxmx` models. See [issue #7](https://github.com/LPGhatguy/rojo/issues/7) for more details and updates on this feature. JSON model files are strict, with every property being required. They look like this: +`hello.model.json` ```json { "Name": "hello",