Packs: Floreswa (characters), Junk Car Parts, Junkyard models, LB3D lowpoly. 159 binaries (png/obj/fbx/jpg) stored via Git LFS; Unity YAML (prefab/mat/ scene/asset) kept as normal text. Perftest run artifacts gitignored. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
446 B
Text
24 lines
446 B
Text
// Unlit alpha-blended shader.
|
|
// - no lighting
|
|
// - no lightmap support
|
|
// - no per-material color
|
|
|
|
Shader "Unlit/TransparentDoubleSided" {
|
|
Properties {
|
|
_MainTex ("Base (RGB) Trans (A)", 2D) = "white" {}
|
|
}
|
|
|
|
SubShader {
|
|
Tags {"Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent"}
|
|
LOD 100
|
|
Cull Off
|
|
|
|
ZWrite Off
|
|
Blend SrcAlpha OneMinusSrcAlpha
|
|
|
|
Pass {
|
|
Lighting Off
|
|
SetTexture [_MainTex] { combine texture }
|
|
}
|
|
}
|
|
}
|