Home | History | Annotate | Download | only in filters

Lines Matching refs:material

35 import com.jme3.material.Material;
84 protected Material getMaterial() {
85 material.setTexture("NormalsTexture", normalPass.getRenderedTexture());
86 return material;
93 material = new Material(manager, "Common/MatDefs/Post/CartoonEdge.j3md");
94 material.setFloat("EdgeWidth", edgeWidth);
95 material.setFloat("EdgeIntensity", edgeIntensity);
96 material.setFloat("NormalThreshold", normalThreshold);
97 material.setFloat("DepthThreshold", depthThreshold);
98 material.setFloat("NormalSensitivity", normalSensitivity);
99 material.setFloat("DepthSensitivity", depthSensitivity);
100 material.setColor("EdgeColor", edgeColor);
119 if (material != null) {
120 material.setFloat("DepthSensitivity", depthSensitivity);
140 if (material != null) {
141 material.setFloat("DepthThreshold", depthThreshold);
161 if (material != null) {
162 material.setFloat("EdgeIntensity", edgeIntensity);
180 if (material != null) {
181 material.setFloat("EdgeWidth", edgeWidth);
201 if (material != null) {
202 material.setFloat("NormalSensitivity", normalSensitivity);
222 if (material != null) {
223 material.setFloat("NormalThreshold", normalThreshold);
241 if (material != null) {
242 material.setColor("EdgeColor", edgeColor);