Home | History | Annotate | Download | only in material

Lines Matching refs:Texture

9 import com.jme3.texture.Texture;
14 private Texture texture;
17 public MatParamTexture(VarType type, String name, Texture texture, int unit) {
18 super(type, name, texture, null);
19 this.texture = texture;
26 public Texture getTextureValue() {
27 return texture;
30 public void setTextureValue(Texture value) {
32 this.texture = value;
57 oc.write(texture, "texture", null);
65 texture = (Texture) ic.readSavable("texture", null);