Skip to content

Commit 2caf3b7

Browse files
committed
Fix reporting of visible by points object
1 parent b115901 commit 2caf3b7

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

160 KB
Loading

lib/glow/primitives.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1598,9 +1598,11 @@
15981598
visible: {
15991599
get: function() { return this.__visible },
16001600
set: function(value) {
1601+
console.log('points visible value', value)
16011602
for (var p in this.__points) {
16021603
this.__points[p].visible = value
16031604
}
1605+
this.__visible = value
16041606
}
16051607
},
16061608
__update: function() { } // changes drive updates to the sphere objects

0 commit comments

Comments
 (0)