Last active
August 18, 2023 08:30
-
-
Save nakasyou/a09a519a6af7434ccafb32c9b511e772 to your computer and use it in GitHub Desktop.
aa
This file contains hidden or 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
class Test { | |
constructor() {} | |
getInfo() { | |
return { | |
id: 'test', | |
name: 'Test', | |
blocks: [ | |
{ | |
opcode: 'hello', | |
blockType: Scratch.BlockType.COMMAND, | |
text: '💩' | |
} | |
] | |
} | |
} | |
hello() { | |
alert('hello') | |
} | |
} | |
Scratch.extensions.register(new Test()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment