mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-22 10:16:01 +08:00
17 lines
334 B
Plaintext
17 lines
334 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 {
|
|
SetTexture [_MainTex] {
|
|
combine texture
|
|
}
|
|
}
|
|
}
|
|
} |