Skip to content

Commit

Permalink
Update changelog entry for syncback
Browse files Browse the repository at this point in the history
  • Loading branch information
Dekkonot committed Feb 5, 2024
1 parent 1d57be1 commit 67e74d3
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,29 @@
```json
{
"syncbackRules": {
"ignoreTrees": [
"DataModel/ServerStorage/ImportantSecrets",
],
"ignorePaths": [
"Workspace/Camera",
"ServerStorage/ImportantSecrets/**",
"src/ServerStorage/Secrets/*"
],
"ignoreProperties": {
"Part": ["Color"]
"BasePart": ["Color"]
},
"syncCurrentCamera": false,
"syncUnscriptable": true,
}
}
```

A brief explanation of each field:

- `ignoreTrees` is a list of paths in the **roblox file** that should be ignored
- `ignorePaths` is a list of paths in the **file system** that should be ignored
- `ignoreProperties` is a list of properties that won't be synced back
- `syncCurrentCamera` is a toggle for whether to sync back the Workspace's CurrentCamera. Defaults to `false`.
- `syncUnscriptable` is a toggle for whether to sync back properties that cannot be set by the Roblox Studio plugin. Defaults to `false`.

* Projects may now manually link `Ref` properties together using `Attributes`. ([#843])
This has two parts: using `id` or `$id` in JSON files or a `Rojo_Target` attribute, an Instance
is given an ID. Then, that ID may be used elsewhere in the project to point to an Instance
Expand Down

0 comments on commit 67e74d3

Please sign in to comment.