Первый коммит

This commit is contained in:
2024-04-20 11:16:35 +03:00
parent 284e0891d9
commit 2452b24ee5
5427 changed files with 4562744 additions and 0 deletions

View File

@ -0,0 +1,33 @@
Shader "RCCSkidmarks" {
Properties {
_Color ("Main Color", Color) = (1,1,1,1)
_MainTex ("Base (RGB) Trans (A)", 2D) = "white" {}
}
Category {
Offset -4, -4
ZWrite Off
Alphatest Greater 0
Tags {"Queue"="Transparent" "RenderType"="Transparent"}
SubShader {
ColorMaterial AmbientAndDiffuse
Lighting Off
Blend SrcAlpha OneMinusSrcAlpha
Pass {
ColorMask RGBA
SetTexture [_MainTex] {
Combine texture, texture * primary
// * primary
}
SetTexture [_MainTex] {
ConstantColor [_Color]
Combine constant * previous
}
}
}
}
// Fallback to Alpha Vertex Lit
Fallback "Transparent/VertexLit", 2
}