use of com.badlogic.gdx.utils.JsonValue.JsonIterator in project gdx-gltf by mgsx-dev.
the class GLTFMorphTarget method read.
@Override
public void read(Json json, JsonValue jsonData) {
for (JsonIterator i = jsonData.iterator(); i.hasNext(); ) {
JsonValue e = i.next();
put(e.name, e.asInt());
}
}
Aggregations