generated from Ukuroks-games/roblox-project-template
-
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.
+ fix Destroy func if animation stiil running + add Destroying Event + add tests.json + update Readme
- Loading branch information
Showing
5 changed files
with
173 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"label": "Build tests", | ||
"detail": "Build tests place", | ||
"command": "rojo build tests.project.json --output tests.rbxl && exit", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"dependsOn": [ | ||
"Install depends" | ||
] | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "Generate sourcemap for tests", | ||
"detail": "Generate sourcemap for tests", | ||
"command": "rojo sourcemap tests.project.json --output sourcemap.json && exit", | ||
"group": { | ||
"kind": "none" | ||
}, | ||
"dependsOn": [ | ||
"Install depends" | ||
] | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "Install programms", | ||
"detail": "Install programms using aftman", | ||
"command": "aftman install && exit", | ||
"group": { | ||
"kind": "none" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "Install depends", | ||
"detail": "Install all project depends", | ||
"command": "wally install && exit", | ||
"group": { | ||
"kind": "none" | ||
}, | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "Update depends", | ||
"detail": "Update all project depends", | ||
"command": "wally update && exit", | ||
"group": { | ||
"kind": "none" | ||
}, | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "publish", | ||
"detail": "publish it as wally package", | ||
"command": "wally publish && exit", | ||
"group": { | ||
"kind": "none" | ||
}, | ||
"problemMatcher": [] | ||
}, | ||
], | ||
"options": { | ||
"shell": { | ||
"executable": "cmd", | ||
"args": [ | ||
"/k" | ||
] | ||
} | ||
}, | ||
"version": "2.0.0" | ||
} |
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