jankenbots/Assets/Junkyard models/Shaders/UnlitTranparentDoubleSided.shader
megaproxy 7ebc175151 Import Asset Store scrap/character packs (LFS-backed)
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>
2026-07-12 18:05:27 +01:00

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 }
}
}
}