-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
60 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Excel Tables | ||
::: danger UNFINISHED | ||
This documentation is unfinished. | ||
::: | ||
# Excel Tables |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# JSON Models | ||
::: danger UNFINISHED | ||
This documentation is unfinished. | ||
::: | ||
# JSON Models | ||
|
||
## Syntax |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,35 @@ | ||
# Meta Files | ||
::: danger UNFINISHED | ||
This documentation is unfinished. | ||
::: | ||
Meta Files attach additional data to a file or directory. | ||
|
||
They are used in scenarios where it would be desirable to change the properties of something which otherwise cannot be changed from the filesystem. | ||
|
||
## Syntax | ||
|
||
### File Name | ||
- `*.Meta.JSON` - For files. | ||
- `Init.Meta.JSON` - For directories. | ||
|
||
### Keys | ||
- string `className` - Changes the ClassName. Usable only with directories. | ||
- table `properties` - A map of properties to set on the Instance. | ||
|
||
## Examples | ||
The most common use case is changing the ClassName of a Folder. | ||
|
||
If your project has a directory and you want to change its ClassName, you will create a `Init.Meta.JSON` inside it with: | ||
```json | ||
{ | ||
"className": "Configuration" | ||
} | ||
``` | ||
|
||
Another use case is changing the properties of a Model (`RBXM`/`RBXMX`). Because the file is encoded, it cannot have its properties changed directly. | ||
|
||
If your project has `foo.RBXM` (which contains a single Part) and you want to make it a different color, you will create a `foo.Meta.JSON` next to it with: | ||
```json | ||
{ | ||
"properties": { | ||
"Color": [ "Color3.fromRGB(82, 132, 145)" ] | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Automated Downloads | ||
::: danger UNFINISHED | ||
This documentation is unfinished. | ||
::: | ||
# Automated Downloads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Automated Jobs | ||
::: danger UNFINISHED | ||
This documentation is unfinished. | ||
::: | ||
# Automated Jobs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Project File Syntax | ||
::: danger UNFINISHED | ||
This documentation is unfinished. | ||
::: | ||
# Project File Syntax |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sourcemap | ||
::: danger UNFINISHED | ||
This documentation is unfinished. | ||
::: | ||
# Sourcemap |