Move and consolidate many third-party plugin files and metadata from various locations (notably Assets/Third Parties/Plugins 1 and scattered Opsive/Photon folders) into a unified Assets/Plugins directory. Includes DOTween, PrimeTween, Native/BackroomsNoise, Sirenix/Odin Inspector, and Opsive UltimateCharacterController/shared libs, plus updates to several .meta files and removal of obsolete installer/legacy files. This standardizes plugin layout and cleans up duplicate/obsolete assets.
18 lines
459 B
Plaintext
18 lines
459 B
Plaintext
Shader "GUI/3D Text Shader" {
|
|
Properties {
|
|
_MainTex ("Font Texture", 2D) = "white" {}
|
|
_Color ("Text Color", Color) = (1,1,1,1)
|
|
}
|
|
|
|
SubShader {
|
|
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
|
|
Lighting Off Cull Off ZWrite Off Fog { Mode Off }
|
|
Blend SrcAlpha OneMinusSrcAlpha
|
|
Pass {
|
|
Color [_Color]
|
|
SetTexture [_MainTex] {
|
|
combine primary, texture * primary
|
|
}
|
|
}
|
|
}
|
|
} |