-
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.
Terrain:Clear() and task.wait between chunks
- Loading branch information
Showing
3 changed files
with
51 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# terrain-region-plugin | ||
|
||
Alternative to [@sleitnick's terrain save and load plugin](https://create.roblox.com/store/asset/148042198/Terrain-Save-and-Load). Saves terrain into multiple regions. | ||
|
||
For the Luau module, see [load.luau](https://github.com/grand-hawk/terrain-region-plugin/blob/main/src/shared/load.luau). | ||
|
||
See [releases](https://github.com/grand-hawk/terrain-region-plugin/releases) tab or install from [the creator hub](https://create.roblox.com/store/asset/91863372715067). | ||
|
||
![RobloxStudioBeta_vXqEP1ws2f](https://github.com/user-attachments/assets/ad2fcbd8-7cbd-4c66-a25b-180c1f8927b2) | ||
![image](https://github.com/user-attachments/assets/b9a7a545-2add-4f09-8c0a-07f3c2e05c82) | ||
# terrain-region-plugin | ||
|
||
Alternative to [@sleitnick's terrain save and load plugin](https://create.roblox.com/store/asset/148042198/Terrain-Save-and-Load). Saves terrain into multiple regions. | ||
|
||
For the Luau module, see [load.luau](https://github.com/grand-hawk/terrain-region-plugin/blob/main/src/shared/load.luau). | ||
|
||
See [releases](https://github.com/grand-hawk/terrain-region-plugin/releases) tab or install from [the creator hub](https://create.roblox.com/store/asset/91863372715067). | ||
|
||
![RobloxStudioBeta_vXqEP1ws2f](https://github.com/user-attachments/assets/ad2fcbd8-7cbd-4c66-a25b-180c1f8927b2) | ||
![image](https://github.com/user-attachments/assets/b9a7a545-2add-4f09-8c0a-07f3c2e05c82) |
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,37 +1,37 @@ | ||
{ | ||
"name": "terrain-region-plugin", | ||
"version": "0.2.0", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "rbxtsc", | ||
"build:rbxm": "rojo build -o plugin.rbxm", | ||
"build:plugin": "rojo build -p terrain-region-plugin.rbxm", | ||
"watch": "npm run build -- -w", | ||
"format": "prettier -w .", | ||
"lint": "eslint ." | ||
}, | ||
"author": "Astrid <git@astrid.email>", | ||
"devDependencies": { | ||
"@rbxts/compiler-types": "2.3.0-types.1", | ||
"@rbxts/types": "^1.0.809", | ||
"@typescript-eslint/eslint-plugin": "^7.18.0", | ||
"@typescript-eslint/parser": "^7.18.0", | ||
"eslint": "^8.57.1", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-import-resolver-typescript": "^3.6.3", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-react": "^7.36.1", | ||
"eslint-plugin-roblox-ts": "^0.0.36", | ||
"prettier": "^3.3.3", | ||
"prettier-eslint": "^16.3.0", | ||
"roblox-ts": "3.0.0-dev-371f97c", | ||
"typescript": "^5.6.2" | ||
}, | ||
"dependencies": { | ||
"@grand-hawk/ui-components": "^0.3.0", | ||
"@rbxts/react": "^0.4.0", | ||
"@rbxts/react-roblox": "^0.4.0", | ||
"@rbxts/services": "^1.5.5" | ||
} | ||
} | ||
{ | ||
"name": "terrain-region-plugin", | ||
"version": "0.2.1", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "rbxtsc", | ||
"build:rbxm": "rojo build -o plugin.rbxm", | ||
"build:plugin": "rojo build -p terrain-region-plugin.rbxm", | ||
"watch": "npm run build -- -w", | ||
"format": "prettier -w .", | ||
"lint": "eslint ." | ||
}, | ||
"author": "Astrid <git@astrid.email>", | ||
"devDependencies": { | ||
"@rbxts/compiler-types": "2.3.0-types.1", | ||
"@rbxts/types": "^1.0.809", | ||
"@typescript-eslint/eslint-plugin": "^7.18.0", | ||
"@typescript-eslint/parser": "^7.18.0", | ||
"eslint": "^8.57.1", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-import-resolver-typescript": "^3.6.3", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-react": "^7.36.1", | ||
"eslint-plugin-roblox-ts": "^0.0.36", | ||
"prettier": "^3.3.3", | ||
"prettier-eslint": "^16.3.0", | ||
"roblox-ts": "3.0.0-dev-371f97c", | ||
"typescript": "^5.6.2" | ||
}, | ||
"dependencies": { | ||
"@grand-hawk/ui-components": "^0.3.0", | ||
"@rbxts/react": "^0.4.0", | ||
"@rbxts/react-roblox": "^0.4.0", | ||
"@rbxts/services": "^1.5.5" | ||
} | ||
} |
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