com.gempukku.libgdx.graph.plugin.models.producer.ModelShaderContextImpl 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.plugin.models.producer;
import com.gempukku.libgdx.graph.pipeline.producer.rendering.producer.ShaderContextImpl;
import com.gempukku.libgdx.graph.plugin.PluginPrivateDataSource;
import com.gempukku.libgdx.graph.plugin.models.ModelShaderContext;
public class ModelShaderContextImpl extends ShaderContextImpl implements ModelShaderContext {
private ModelInstanceData modelInstanceData;
public ModelShaderContextImpl(PluginPrivateDataSource pluginPrivateDataSource) {
super(pluginPrivateDataSource);
}
@Override
public ModelInstanceData getModelInstanceData() {
return modelInstanceData;
}
public void setModelInstanceData(ModelInstanceData modelInstanceData) {
this.modelInstanceData = modelInstanceData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy