浏览代码

Delete dashed.j3md

Wyatt Gillette 3 月之前
父节点
当前提交
b0cf966c38
共有 1 个文件被更改,包括 0 次插入38 次删除
  1. 0 38
      jme3-core/src/main/resources/Common/MatDefs/Dashed/dashed.j3md

+ 0 - 38
jme3-core/src/main/resources/Common/MatDefs/Dashed/dashed.j3md

@@ -1,38 +0,0 @@
-MaterialDef Dashed {
-    MaterialParameters {
-        Float DashSize
-        Vector4 Color
-    }
-    Technique {
-        WorldParameters {
-            WorldViewProjectionMatrix
-        }
-        VertexShaderNodes {
-            ShaderNode CommonVert {
-                Definition : CommonVert : Common/MatDefs/ShaderNodes/Common/CommonVert.j3sn
-                InputMappings {
-                    worldViewProjectionMatrix = WorldParam.WorldViewProjectionMatrix
-                    modelPosition = Global.position.xyz
-                    texCoord1 = Attr.inTexCoord
-                    vertColor = Attr.inColor
-                }
-                OutputMappings {
-                    Global.position = projPosition
-                }
-            }
-        }
-        FragmentShaderNodes {
-            ShaderNode Dashed {
-                Definition : Dashed : Common/MatDefs/ShaderNodes/Common/Dashed.j3sn
-                InputMappings {
-                    texCoord = CommonVert.texCoord1
-                    inColor = MatParam.Color
-                    size = MatParam.DashSize
-                }
-                OutputMappings {
-                    Global.color = outColor
-                }
-            }
-        }
-    }
-}