mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -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
|
@ -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