Skip to content

Commit 6e125d9

Browse files
authoredJan 6, 2025··
Merge pull request #2323 from capdevon/capdevon-TerrainMatDef
Fix for issue #2300: Removed incorrect 'Technique' block in terrain j3md files.
2 parents f90188e + 773457b commit 6e125d9

File tree

2 files changed

+54
-57
lines changed

2 files changed

+54
-57
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,44 @@
11
MaterialDef Terrain {
22

3-
// Parameters to material:
4-
// regionXColorMap: X = 1..4 the texture that should be applied to state X
5-
// regionX: a Vector3f containing the following information:
6-
// regionX.x: the start height of the region
7-
// regionX.y: the end height of the region
8-
// regionX.z: the texture scale for the region
9-
// it might not be the most elegant way for storing these 3 values, but it packs the data nicely :)
10-
// slopeColorMap: the texture to be used for cliffs, and steep mountain sites
11-
// slopeTileFactor: the texture scale for slopes
12-
// terrainSize: the total size of the terrain (used for scaling the texture)
13-
MaterialParameters {
14-
Int BoundDrawBuffer
15-
Texture2D region1ColorMap
16-
Texture2D region2ColorMap
17-
Texture2D region3ColorMap
18-
Texture2D region4ColorMap
19-
Texture2D slopeColorMap
20-
Float slopeTileFactor
21-
Float terrainSize
22-
Vector3 region1
23-
Vector3 region2
24-
Vector3 region3
25-
Vector3 region4
26-
}
3+
// Parameters to material:
4+
// regionXColorMap: X = 1..4 the texture that should be applied to state X
5+
// regionX: a Vector3f containing the following information:
6+
// regionX.x: the start height of the region
7+
// regionX.y: the end height of the region
8+
// regionX.z: the texture scale for the region
9+
// it might not be the most elegant way for storing these 3 values, but it packs the data nicely :)
10+
// slopeColorMap: the texture to be used for cliffs, and steep mountain sites
11+
// slopeTileFactor: the texture scale for slopes
12+
// terrainSize: the total size of the terrain (used for scaling the texture)
2713

28-
Technique {
29-
VertexShader GLSL300 GLSL150 GLSL100: Common/MatDefs/Terrain/HeightBasedTerrain.vert
30-
FragmentShader GLSL300 GLSL150 GLSL100: Common/MatDefs/Terrain/HeightBasedTerrain.frag
14+
MaterialParameters {
15+
Int BoundDrawBuffer
16+
Texture2D region1ColorMap
17+
Texture2D region2ColorMap
18+
Texture2D region3ColorMap
19+
Texture2D region4ColorMap
20+
Texture2D slopeColorMap
21+
Float slopeTileFactor
22+
Float terrainSize
23+
Vector3 region1
24+
Vector3 region2
25+
Vector3 region3
26+
Vector3 region4
27+
}
3128

32-
WorldParameters {
33-
WorldViewProjectionMatrix
34-
WorldMatrix
35-
NormalMatrix
36-
}
37-
38-
Defines {
39-
BOUND_DRAW_BUFFER: BoundDrawBuffer
29+
Technique {
30+
VertexShader GLSL300 GLSL150 GLSL100: Common/MatDefs/Terrain/HeightBasedTerrain.vert
31+
FragmentShader GLSL300 GLSL150 GLSL100: Common/MatDefs/Terrain/HeightBasedTerrain.frag
32+
33+
WorldParameters {
34+
WorldViewProjectionMatrix
35+
WorldMatrix
36+
NormalMatrix
4037
}
41-
}
4238

43-
Technique {
39+
Defines {
40+
BOUND_DRAW_BUFFER: BoundDrawBuffer
41+
}
4442
}
43+
4544
}
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,32 @@
11
MaterialDef Terrain {
22

3-
MaterialParameters {
4-
Int BoundDrawBuffer
3+
MaterialParameters {
4+
Int BoundDrawBuffer
55

66
// use tri-planar mapping
77
Boolean useTriPlanarMapping
88

9-
Texture2D Alpha -LINEAR
10-
Texture2D Tex1
11-
Texture2D Tex2
12-
Texture2D Tex3
13-
Float Tex1Scale
14-
Float Tex2Scale
15-
Float Tex3Scale
16-
}
9+
Texture2D Alpha -LINEAR
10+
Texture2D Tex1
11+
Texture2D Tex2
12+
Texture2D Tex3
13+
Float Tex1Scale
14+
Float Tex2Scale
15+
Float Tex3Scale
16+
}
17+
18+
Technique {
19+
VertexShader GLSL300 GLSL150 GLSL100: Common/MatDefs/Terrain/Terrain.vert
20+
FragmentShader GLSL300 GLSL150 GLSL100: Common/MatDefs/Terrain/Terrain.frag
1721

18-
Technique {
19-
VertexShader GLSL300 GLSL150 GLSL100: Common/MatDefs/Terrain/Terrain.vert
20-
FragmentShader GLSL300 GLSL150 GLSL100: Common/MatDefs/Terrain/Terrain.frag
21-
22-
WorldParameters {
23-
WorldViewProjectionMatrix
24-
}
22+
WorldParameters {
23+
WorldViewProjectionMatrix
24+
}
2525

2626
Defines {
2727
BOUND_DRAW_BUFFER: BoundDrawBuffer
2828
TRI_PLANAR_MAPPING : useTriPlanarMapping
2929
}
30-
}
31-
32-
Technique {
3330
}
31+
3432
}

0 commit comments

Comments
 (0)
Please sign in to comment.