use of com.gempukku.libgdx.graph.ui.part.Vector3BoxPart in project gdx-graph by MarcinSc.
the class PropertyVector3BoxProducer method createPropertyBox.
@Override
public PropertyBox createPropertyBox(Skin skin, String name, PropertyLocation location, JsonValue jsonObject, PropertyLocation[] propertyLocations) {
PropertyBoxImpl result = new PropertyBoxImpl(name, ShaderFieldType.Vector3, location, propertyLocations);
result.addPropertyBoxPart(new Vector3BoxPart("Vector3", "x", "y", "z", 0, 0, 0, null, null, null));
result.initialize(jsonObject);
return result;
}
Aggregations