• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Exception WireColor.j3md has been marked as obsolete. Please use Unshaded.j3md instead.
2
3MaterialDef Wire Color {
4
5    MaterialParameters {
6        Vector4 Color : Color
7    }
8
9    Technique {
10        VertexShader GLSL100:   Common/MatDefs/Misc/Unshaded.vert
11        FragmentShader GLSL100: Common/MatDefs/Misc/Unshaded.frag
12
13        RenderState {
14            FaceCull Off
15            Blend Alpha
16            AlphaTestFalloff 0.01
17            Wireframe On
18        }
19
20        Defines {
21            HAS_COLOR : Color
22        }
23
24        WorldParameters {
25            WorldViewProjectionMatrix
26        }
27    }
28
29    Technique FixedFunc {
30        RenderState {
31            FaceCull Off
32            Blend Alpha
33            AlphaTestFalloff 0.01
34            Wireframe On
35        }
36    }
37
38}