11 lines
353 B
JavaScript
11 lines
353 B
JavaScript
import * as Blockly from 'blockly/core';
|
|
|
|
export const sound_volume_get = {
|
|
init: function() {
|
|
this.setColour('#acc159');
|
|
this.appendDummyInput()
|
|
.appendField(Blockly.Msg.MIXLY_catSoundSOUND_VOLUME_GET);
|
|
this.setOutput(true, "Volume");
|
|
this.setTooltip(Blockly.Msg.MIXLY_SOUND_VOLUME_GET_TOOLTIP);
|
|
}
|
|
}; |