mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
Real version of Clone.prototype.setVisible
This commit is contained in:
parent
1f19d7a209
commit
c650de8520
1 changed files with 4 additions and 7 deletions
|
@ -3,7 +3,7 @@ var MathUtil = require('../util/math-util');
|
|||
var Target = require('../engine/target');
|
||||
|
||||
/**
|
||||
* Clone (instance) of a sprite.
|
||||
* Clone (instance) of a sprite.
|
||||
* @param {!Blocks} spriteBlocks Reference to the sprite's blocks.
|
||||
* @constructor
|
||||
*/
|
||||
|
@ -116,12 +116,9 @@ Clone.prototype.setSay = function (type, message) {
|
|||
*/
|
||||
Clone.prototype.setVisible = function (visible) {
|
||||
this.visible = visible;
|
||||
// @todo: Until visibility is implemented in the renderer, use a ghost.
|
||||
if (this.visible) {
|
||||
this.setEffect('ghost', 0);
|
||||
} else {
|
||||
this.setEffect('ghost', 100);
|
||||
}
|
||||
self.renderer.updateDrawableProperties(this.drawableID, {
|
||||
visible: this.visible
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue