Comparing version 0.6.1 to 0.6.2
# Famous Rendering Engine Changelog | ||
## 0.6.2 | ||
### Bug Fixes | ||
- mount and show logic 8a916b91986cad8f704fbf4ecd5efced2474c093 | ||
### Testing and Tooling | ||
- fix test for default geometry 6a33d097b7876fa47fe09a8560224b1a7906a105 | ||
## 0.6.1 | ||
@@ -4,0 +15,0 @@ |
@@ -146,4 +146,6 @@ /** | ||
if (parent.isMounted()) node._setMounted(true, path); | ||
if (parent.isShown()) node._setShown(true); | ||
if (parent.isMounted()) { | ||
node._setMounted(true, path); | ||
node._setParent(parent); | ||
@@ -162,3 +164,2 @@ if (node.onMount) node.onMount(path); | ||
if (parent.isShown()) { | ||
node._setShown(true); | ||
if (node.onShow) node.onShow(); | ||
@@ -165,0 +166,0 @@ for (i = 0, len = components.length ; i < len ; i++) |
{ | ||
"name": "famous", | ||
"version": "0.6.1", | ||
"version": "0.6.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -225,4 +225,4 @@ /** | ||
t.false(mesh.getGeometry(), | ||
'should not return a geometry if none has been set'); | ||
t.true(mesh.getGeometry(), | ||
'should return a default geometry of plane if none was set'); | ||
@@ -229,0 +229,0 @@ mesh.setGeometry('Box'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1355611