Corrected spelling mistake.
This commit is contained in:
parent
a22f6772e6
commit
6c9cd46e11
@ -116,7 +116,7 @@ public class BatchNode extends GeometryGroupNode {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGeoemtryUnassociated(Geometry geom) {
|
||||
public void onGeometryUnassociated(Geometry geom) {
|
||||
setNeedsFullRebatch(true);
|
||||
}
|
||||
|
||||
|
@ -344,7 +344,7 @@ public class Geometry extends Spatial {
|
||||
if (groupNode != null) {
|
||||
// Once the geometry is removed
|
||||
// from the parent, the group node needs to be updated.
|
||||
groupNode.onGeoemtryUnassociated(this);
|
||||
groupNode.onGeometryUnassociated(this);
|
||||
groupNode = null;
|
||||
|
||||
// change the default to -1 to make error detection easier
|
||||
|
@ -83,5 +83,5 @@ public abstract class GeometryGroupNode extends Node {
|
||||
*
|
||||
* @param geom The Geometry which is being unassociated.
|
||||
*/
|
||||
public abstract void onGeoemtryUnassociated(Geometry geom);
|
||||
public abstract void onGeometryUnassociated(Geometry geom);
|
||||
}
|
||||
|
@ -329,7 +329,7 @@ public class InstancedNode extends GeometryGroupNode {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGeoemtryUnassociated(Geometry geom) {
|
||||
public void onGeometryUnassociated(Geometry geom) {
|
||||
removeFromInstancedGeometry(geom);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user