mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
18 lines
385 B
Plaintext
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
|
|
}
|
|
}
|
|
}
|
|
} |