@jaeymo/toybox
v1.2.0
Published
Toybox scans a Roblox hierarchy and produces a Rojo mapping so all of your assets are statically represented
Readme
Toybox
Toybox scans a Roblox asset hierarchy and produces a Rojo-compatible mapping so your assets are statically represented in your project configuration.
Usage
Start the Toybox server:
toybox serve --project toybox.generated.jsonThen click a directory in Roblox Studio with the plugin and hit "Watch". Your changes will now sync!
Example
If your ReplicatedStorage contains:
ReplicatedStorage
└── Assets
├── Models
└── SomeModelRunning the command would produce:
"Asset": {
"$className": "Folder",
"Models": {
"$className": "Folder",
"SomeModel": {
"$className": "Model",
}
},
}