mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
do not load vernier extension yet
This commit is contained in:
parent
d5c2991a25
commit
5d329663aa
1 changed files with 5 additions and 3 deletions
|
@ -17,7 +17,9 @@ const Scratch3VideoSensingBlocks = require('../extensions/scratch3_video_sensing
|
||||||
const Scratch3Speech2TextBlocks = require('../extensions/scratch3_speech2text');
|
const Scratch3Speech2TextBlocks = require('../extensions/scratch3_speech2text');
|
||||||
const Scratch3Ev3Blocks = require('../extensions/scratch3_ev3');
|
const Scratch3Ev3Blocks = require('../extensions/scratch3_ev3');
|
||||||
const Scratch3MakeyMakeyBlocks = require('../extensions/scratch3_makeymakey');
|
const Scratch3MakeyMakeyBlocks = require('../extensions/scratch3_makeymakey');
|
||||||
const Scratch3GdxForBlocks = require('../extensions/scratch3_gdx_for');
|
// todo: only load this extension once we have a compatible way to load its
|
||||||
|
// Vernier module dependency.
|
||||||
|
// const Scratch3GdxForBlocks = require('../extensions/scratch3_gdx_for');
|
||||||
|
|
||||||
const builtinExtensions = {
|
const builtinExtensions = {
|
||||||
pen: Scratch3PenBlocks,
|
pen: Scratch3PenBlocks,
|
||||||
|
@ -29,8 +31,8 @@ const builtinExtensions = {
|
||||||
videoSensing: Scratch3VideoSensingBlocks,
|
videoSensing: Scratch3VideoSensingBlocks,
|
||||||
speech2text: Scratch3Speech2TextBlocks,
|
speech2text: Scratch3Speech2TextBlocks,
|
||||||
ev3: Scratch3Ev3Blocks,
|
ev3: Scratch3Ev3Blocks,
|
||||||
makeymakey: Scratch3MakeyMakeyBlocks,
|
makeymakey: Scratch3MakeyMakeyBlocks
|
||||||
gdxfor: Scratch3GdxForBlocks
|
// gdxfor: Scratch3GdxForBlocks
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue