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
When CSS transforms are turned on for a higher-level node, there seem to be cases where sub-nodes get cut off. This is currently being seen in the RewardNode class in Build an Atom. The problem occurs when the call to the supertype looks like this:
When CSS transforms are turned on for a higher-level node, there seem to be cases where sub-nodes get cut off. This is currently being seen in the RewardNode class in Build an Atom. The problem occurs when the call to the supertype looks like this:
Node.call( this, { renderer: 'svg', rendererOptions: { cssTransform: true }, pickable: false } );
...and goes away when it looks like this:
Node.call( this, { renderer: 'svg', pickable: false } );
I am attaching two screen shots that correspond to the two lines above. On the first, you can see how nodes are cut off part way down.
The text was updated successfully, but these errors were encountered: