Last active
December 21, 2022 15:41
-
-
Save nikeedev/c1dae6a92bd5fa3d61978b7e746e4fa4 to your computer and use it in GitHub Desktop.
Turbowarp extension
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
// We use class syntax to define our extension object | |
// This isn't actually necessary, but it tends to look the best | |
class extension { | |
/** | |
* Scratch will call this method *once* when the extension loads. | |
* This method's job is to tell Scratch things like the extension's ID, name, and what blocks it supports. | |
*/ | |
getInfo() { | |
return { | |
// `id` is the internal ID of the extension | |
// It should never hange! | |
// If you choose to make an actual extension, please change this to something else. | |
// Only the characters a-z and 0-9 can be used. No spaces or special characters. | |
id: 'NikeeExtension', | |
// `name` is what the user sees in the toolbox | |
// It can be changed without breaking projects. | |
name: '', | |
blocks: [ | |
{ | |
// `opcode` is the internal ID of the block | |
// It should never change! | |
// It corresponds to the class method with the same name. | |
opcode: 'hello', | |
blockType: Scratch.BlockType.COMMAND, | |
text: 'Hello, world!' | |
}, | |
{ | |
// `opcode` is the internal ID of the block | |
// It should never change! | |
// It corresponds to the class method with the same name. | |
opcode: 'text', | |
blockType: Scratch.BlockType.REPORTER, | |
text: '\t π', | |
arguments: Scratch.ArgumentType.MATRIX | |
} | |
] | |
}; | |
} | |
/** | |
* Corresponds to `opcode: 'hello'` above | |
*/ | |
hello() { | |
// You can just return a value: any string, boolean, or number will work. | |
// If you have to perform an asynchronous action like a request, just return a Promise. | |
// The block will wait until the Promise resolves and return the resolved value. | |
return; | |
} | |
text() { | |
return "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n hei"; | |
} | |
} | |
// Call Scratch.extensions.register to register your extension | |
// Make sure to register each extension exactly once | |
Scratch.extensions.register(new extension()); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment