-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebugger.js
45 lines (45 loc) · 808 Bytes
/
debugger.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(function(Scratch) {
'use strict';
if (!Scratch.extensions.unsandboxed) {
throw new Error('The console has to run unsandboxed!');
}
var consolestate = "closed";
const debugbox = document.createElement("div");
box.id = "box";
document.body.appendChild(box);
class shoveldebugger {
getInfo() {
return {
id: 'shoveldebugger',
name: 'Console',
blocks: [
{
opcode: 'showconsole',
blockType: Scratch.BlockType.COMMAND,
text: 'Show console'
},
{
opcode: 'closeconsole',
blockType: Scratch.BlockType.COMMAND,
text: 'Close console'
},
]
};
}
showconsole() {
if (consolestate = "closed")
{
consolestate = "open";
console.log("Opened console");
}
}
closeconsole(){
if (consolestate = "open")
{
consolestate = "closed";
console.log("Closed console");
}
}
}
Scratch.extensions.register(new shoveldebugger());
})(Scratch);