Made GeometryGroupNode.getGeometryStartIndex public

This commit is contained in:
Nehon 2014-09-11 21:22:21 +02:00
parent a709ba9a77
commit ead8393600

View File

@ -8,7 +8,7 @@ package com.jme3.scene;
*/ */
public abstract class GeometryGroupNode extends Node { public abstract class GeometryGroupNode extends Node {
protected static int getGeometryStartIndex(Geometry geom) { public static int getGeometryStartIndex(Geometry geom) {
if (geom.startIndex == -1) { if (geom.startIndex == -1) {
throw new AssertionError(); throw new AssertionError();
} }