online加声音目录
This commit is contained in:
15
boards/default_src/python_pyodide/blocks/sound/volume/set.js
Normal file
15
boards/default_src/python_pyodide/blocks/sound/volume/set.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import * as Blockly from 'blockly/core';
|
||||
|
||||
export const sound_volume_set = {
|
||||
init: function() {
|
||||
this.setColour('#acc159');
|
||||
this.appendDummyInput()
|
||||
.appendField(Blockly.Msg.MIXLY_catSoundSOUND_VOLUME_SET);
|
||||
this.appendValueInput("VALUE")
|
||||
.setCheck(null);
|
||||
this.appendDummyInput();
|
||||
this.setPreviousStatement(true);
|
||||
this.setNextStatement(true);
|
||||
this.setTooltip(Blockly.Msg.MIXLY_SOUND_VOLUME_SET_TOOLTIP);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user