2013-04-24 19:05:20 +02:00

18 lines
385 B
Plaintext

Shader "Skeleton" {
Properties {
_MainTex ("Texture to blend", 2D) = "black" {}
}
SubShader {
Tags { "Queue" = "Transparent" }
Cull Off
Lighting Off
ZWrite Off
Blend One OneMinusSrcAlpha
Pass {
ColorMaterial AmbientAndDiffuse
SetTexture [_MainTex] {
combine texture * primary
}
}
}
}