You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Over while reviewing changes in #1100 (comment), @samreid and I were curious if it is buggy that enabled can change the pickability from null to true silently and not explicitely. Here is the case we came up with in that comment:
x = new Node();
x.pickable => null;
x.enabled => true;
x.enabled = true; // no op
x.pickable => null; // null right now
x.enabled => true;
x.enabled = false;
x.pickable => false;
x.enabled => false;
x.enabled = true;
x.pickable => true; // buggy? Is this a discrepancy in behavior? Or perhaps a feature?
x.enabled => true;
@jonathanolson, can you speak to this at all. Do you foresee any problems coming from toggling into true instead of respecting null?
The text was updated successfully, but these errors were encountered:
Over while reviewing changes in #1100 (comment), @samreid and I were curious if it is buggy that enabled can change the pickability from
null
totrue
silently and not explicitely. Here is the case we came up with in that comment:@jonathanolson, can you speak to this at all. Do you foresee any problems coming from toggling into
true
instead of respectingnull
?The text was updated successfully, but these errors were encountered: