Skip to content

Commit

Permalink
Update Sync Details docs
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed May 27, 2018
1 parent 804bbc9 commit 7e4d451
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions docs/sync-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ 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:
JSON model files are fairly strict; any syntax errors will cause the model to fail to sync! They look like this:

`hello.model.json`
```json
Expand All @@ -43,22 +43,18 @@ JSON model files are strict, with every property being required. They look like
"Children": [
{
"Name": "Some Part",
"ClassName": "Part",
"Children": [],
"Properties": {}
"ClassName": "Part"
},
{
"Name": "Some StringValue",
"ClassName": "StringValue",
"Children": [],
"Properties": {
"Value": {
"Type": "String",
"Value": "Hello, world!"
}
}
}
],
"Properties": {}
]
}
```

0 comments on commit 7e4d451

Please sign in to comment.