mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-14 07:21:32 -04:00
Add speech extension to the extension manager.
This commit is contained in:
parent
08cbabe2ea
commit
a93fea3e63
1 changed files with 3 additions and 1 deletions
|
@ -11,12 +11,14 @@ const Scratch3PenBlocks = require('../extensions/scratch3_pen');
|
|||
const Scratch3WeDo2Blocks = require('../extensions/scratch3_wedo2');
|
||||
const Scratch3MusicBlocks = require('../extensions/scratch3_music');
|
||||
const Scratch3VideoSensingBlocks = require('../extensions/scratch3_video_sensing');
|
||||
const Scratch3SpeechBlocks = require('../extensions/scratch3_speech');
|
||||
|
||||
const builtinExtensions = {
|
||||
pen: Scratch3PenBlocks,
|
||||
wedo2: Scratch3WeDo2Blocks,
|
||||
music: Scratch3MusicBlocks,
|
||||
videoSensing: Scratch3VideoSensingBlocks
|
||||
videoSensing: Scratch3VideoSensingBlocks,
|
||||
speech: Scratch3SpeechBlocks
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue