Merge pull request #439 from InShadow/geometry-spelling

Corrected spelling mistake.
This commit is contained in:
Kirill Vainer 2016-03-04 19:36:00 -05:00
commit 90c234175d
4 changed files with 4 additions and 4 deletions

View File

@ -116,7 +116,7 @@ public class BatchNode extends GeometryGroupNode {
} }
@Override @Override
public void onGeoemtryUnassociated(Geometry geom) { public void onGeometryUnassociated(Geometry geom) {
setNeedsFullRebatch(true); setNeedsFullRebatch(true);
} }

View File

@ -344,7 +344,7 @@ public class Geometry extends Spatial {
if (groupNode != null) { if (groupNode != null) {
// Once the geometry is removed // Once the geometry is removed
// from the parent, the group node needs to be updated. // from the parent, the group node needs to be updated.
groupNode.onGeoemtryUnassociated(this); groupNode.onGeometryUnassociated(this);
groupNode = null; groupNode = null;
// change the default to -1 to make error detection easier // change the default to -1 to make error detection easier

View File

@ -83,5 +83,5 @@ public abstract class GeometryGroupNode extends Node {
* *
* @param geom The Geometry which is being unassociated. * @param geom The Geometry which is being unassociated.
*/ */
public abstract void onGeoemtryUnassociated(Geometry geom); public abstract void onGeometryUnassociated(Geometry geom);
} }

View File

@ -329,7 +329,7 @@ public class InstancedNode extends GeometryGroupNode {
} }
@Override @Override
public void onGeoemtryUnassociated(Geometry geom) { public void onGeometryUnassociated(Geometry geom) {
removeFromInstancedGeometry(geom); removeFromInstancedGeometry(geom);
} }
} }