@webwriter/block-based-code
Version:
Write block-based code (e.g. Scratch) and run it.
20 lines (18 loc) • 417 B
text/typescript
import { BlockDefinition } from "../types";
export const blocks = [
{
type: "looks:set_color",
message0: "%{BKY_SET_COLOR}",
args0: [
{
type: "input_value",
name: "COLOR",
check: "Number",
},
],
nextStatement: null,
previousStatement: null,
category: "looks",
style: "look_blocks",
} as const,
] satisfies BlockDefinition[];