Bug fixes.
This commit is contained in:
28
Plugins/.vscode/tasks.json
vendored
28
Plugins/.vscode/tasks.json
vendored
@ -1,28 +0,0 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
|
||||
"tasks":
|
||||
[
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Build Plugin",
|
||||
"command": "rojo build --output GenerateApiDump.rbxm",
|
||||
|
||||
"group": "build"
|
||||
},
|
||||
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Build and Test Plugin",
|
||||
|
||||
"command": "powershell -ExecutionPolicy ByPass -File DeployToStudio.ps1",
|
||||
"dependsOn": ["Build Plugin"],
|
||||
|
||||
"group":
|
||||
{
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
$pluginName = "GenerateApiDump.rbxm"
|
||||
$destPath = "$env:localappdata\Roblox\Plugins\" + $pluginName
|
||||
|
||||
Copy-Item -Path $pluginName -Destination $destPath
|
Binary file not shown.
@ -14,6 +14,7 @@ local singletons = {
|
||||
ParabolaAdornment = Instance.new("BoxHandleAdornment"), -- close enough
|
||||
StarterPlayerScripts = StarterPlayer:WaitForChild("StarterPlayerScripts"),
|
||||
StarterCharacterScripts = StarterPlayer:WaitForChild("StarterCharacterScripts"),
|
||||
BubbleChatConfiguration = TextChatService:WaitForChild("BubbleChatConfiguration", 10),
|
||||
ChatWindowConfiguration = TextChatService:WaitForChild("ChatWindowConfiguration", 10),
|
||||
ChatInputBarConfiguration = TextChatService:WaitForChild("ChatInputBarConfiguration", 10),
|
||||
}
|
||||
|
2
Plugins/make
Normal file
2
Plugins/make
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
rojo build --output $LOCALAPPDATA/Roblox/Plugins/GenerateApiDump.rbxm
|
Reference in New Issue
Block a user