com.gempukku.libgdx.graph.shader.property.PropertySource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libgdx-graph Show documentation
Show all versions of libgdx-graph Show documentation
libGDX-graph runtime library for pipeline rendering
The newest version!
package com.gempukku.libgdx.graph.shader.property;
import com.gempukku.libgdx.graph.shader.ShaderFieldType;
public class PropertySource {
private int propertyIndex;
private String propertyName;
private ShaderFieldType shaderFieldType;
private Object defaultValue;
public PropertySource(int propertyIndex, String propertyName, ShaderFieldType shaderFieldType, Object defaultValue) {
this.propertyIndex = propertyIndex;
this.propertyName = propertyName;
this.shaderFieldType = shaderFieldType;
this.defaultValue = defaultValue;
}
public int getPropertyIndex() {
return propertyIndex;
}
public String getPropertyName() {
return propertyName;
}
public ShaderFieldType getShaderFieldType() {
return shaderFieldType;
}
public Object getDefaultValue() {
return defaultValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy