mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-27 20:21:24 +08:00
21 lines
459 B
Plaintext
21 lines
459 B
Plaintext
Shader "Spine/Skeleton" {
|
|
Properties {
|
|
_MainTex ("Texture to blend", 2D) = "black" {}
|
|
}
|
|
SubShader {
|
|
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
|
|
LOD 100
|
|
|
|
Cull Off
|
|
Lighting Off
|
|
ZWrite Off
|
|
Blend One OneMinusSrcAlpha
|
|
|
|
Pass {
|
|
ColorMaterial AmbientAndDiffuse
|
|
SetTexture [_MainTex] {
|
|
Combine texture * primary
|
|
}
|
|
}
|
|
}
|
|
} |