mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
video transparency should be a number.
This commit is contained in:
parent
651fb58abc
commit
bd0bcb9395
1 changed files with 4 additions and 2 deletions
|
@ -3,6 +3,7 @@ const Runtime = require('../../engine/runtime');
|
|||
const ArgumentType = require('../../extension-support/argument-type');
|
||||
const BlockType = require('../../extension-support/block-type');
|
||||
const Clone = require('../../util/clone');
|
||||
const Cast = require('../../util/cast');
|
||||
const Video = require('../../io/video');
|
||||
|
||||
const VideoMotion = require('./library');
|
||||
|
@ -474,8 +475,9 @@ class Scratch3VideoSensingBlocks {
|
|||
* preview to
|
||||
*/
|
||||
setVideoTransparency (args) {
|
||||
this.globalVideoTransparency = args.TRANSPARENCY;
|
||||
this.runtime.ioDevices.video.setPreviewGhost(Number(args.TRANSPARENCY));
|
||||
const transparency = Cast.toNumber(args.TRANSPARENCY);
|
||||
this.globalVideoTransparency = transparency;
|
||||
this.runtime.ioDevices.video.setPreviewGhost(transparency);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue