2026-03-27 23:57:08 -07:00
|
|
|
Shader "Custom/Simple Blur Shader" {
|
2026-02-05 05:07:55 -08:00
|
|
|
Properties {
|
|
|
|
|
_Size ("Blur", Range(0, 30)) = 1
|
|
|
|
|
[HideInInspector] _MainTex ("Texture (RGB)", 2D) = "white" {}
|
2026-03-27 23:57:08 -07:00
|
|
|
// _TintColor ("Tint Color", Color) = (1,1,1,1)
|
2026-02-05 05:07:55 -08:00
|
|
|
}
|
2026-03-27 23:57:08 -07:00
|
|
|
Category {
|
|
|
|
|
// We must be transparent, so other objects are drawn before this one.
|
|
|
|
|
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Opaque" }
|
|
|
|
|
SubShader
|
|
|
|
|
{
|
|
|
|
|
ZWrite Off
|
|
|
|
|
// Horizontal blur
|
|
|
|
|
GrabPass
|
|
|
|
|
{
|
|
|
|
|
"_HBlur"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Pass
|
|
|
|
|
{
|
|
|
|
|
CGPROGRAM
|
|
|
|
|
#pragma vertex vert
|
|
|
|
|
#pragma fragment frag
|
|
|
|
|
#pragma fragmentoption ARB_precision_hint_fastest
|
|
|
|
|
#include "UnityCG.cginc"
|
|
|
|
|
|
|
|
|
|
struct appdata_t {
|
|
|
|
|
float4 vertex : POSITION;
|
|
|
|
|
float2 texcoord: TEXCOORD0;
|
|
|
|
|
float4 color : COLOR;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct v2f {
|
|
|
|
|
float4 vertex : POSITION;
|
|
|
|
|
float4 uvgrab : TEXCOORD0;
|
|
|
|
|
float2 uvmain : TEXCOORD1;
|
|
|
|
|
float4 color : COLOR;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sampler2D _MainTex;
|
|
|
|
|
float4 _MainTex_ST;
|
|
|
|
|
|
|
|
|
|
v2f vert (appdata_t v)
|
|
|
|
|
{
|
|
|
|
|
v2f o;
|
|
|
|
|
o.vertex = UnityObjectToClipPos(v.vertex);
|
|
|
|
|
|
|
|
|
|
#if UNITY_UV_STARTS_AT_TOP
|
|
|
|
|
float scale = -1.0;
|
|
|
|
|
#else
|
|
|
|
|
float scale = 1.0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
o.uvgrab.xy = (float2(o.vertex.x, o.vertex.y * scale) + o.vertex.w) * 0.5;
|
|
|
|
|
o.uvgrab.zw = o.vertex.zw;
|
|
|
|
|
|
|
|
|
|
o.uvmain = TRANSFORM_TEX(v.texcoord, _MainTex);
|
|
|
|
|
o.color = v.color;
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sampler2D _HBlur;
|
|
|
|
|
float4 _HBlur_TexelSize;
|
2026-02-05 05:07:55 -08:00
|
|
|
float _Size;
|
2026-03-27 23:57:08 -07:00
|
|
|
|
|
|
|
|
half4 frag( v2f i ) : COLOR
|
|
|
|
|
{
|
|
|
|
|
float alpha = tex2D(_MainTex, i.uvmain).a * i.color.a;
|
|
|
|
|
half4 sum = half4(0,0,0,0);
|
|
|
|
|
|
|
|
|
|
#define GRABPIXEL(weight,kernelx) tex2Dproj( _HBlur, UNITY_PROJ_COORD(float4(i.uvgrab.x + _HBlur_TexelSize.x * kernelx * _Size * alpha, i.uvgrab.y, i.uvgrab.z, i.uvgrab.w))) * weight
|
|
|
|
|
|
|
|
|
|
sum += GRABPIXEL(0.05, -4.0);
|
|
|
|
|
sum += GRABPIXEL(0.09, -3.0);
|
|
|
|
|
sum += GRABPIXEL(0.12, -2.0);
|
|
|
|
|
sum += GRABPIXEL(0.15, -1.0);
|
|
|
|
|
sum += GRABPIXEL(0.18, 0.0);
|
|
|
|
|
sum += GRABPIXEL(0.15, +1.0);
|
|
|
|
|
sum += GRABPIXEL(0.12, +2.0);
|
|
|
|
|
sum += GRABPIXEL(0.09, +3.0);
|
|
|
|
|
sum += GRABPIXEL(0.05, +4.0);
|
|
|
|
|
|
|
|
|
|
return sum ;
|
|
|
|
|
}
|
|
|
|
|
ENDCG
|
2026-02-05 05:07:55 -08:00
|
|
|
}
|
2026-03-27 23:57:08 -07:00
|
|
|
|
|
|
|
|
// Vertical blur
|
|
|
|
|
GrabPass
|
Migrate shaders to URP and add loading screen
Reworks multiple shaders and materials for URP compatibility and adds a Loading screen/scene and a few model imports. Key changes:
- Converted ProBuilder standard vertex-color shader and several particle/surface shaders to URP HLSL passes (UniversalForward, ShadowCaster, Depth, DepthNormals) preserving base texture * tint * vertex color, normal map and PBR parameters.
- Updated particle SurfaceShader_VC to a URP forward pass and simplified lighting to use URP shader library helpers.
- Updated materials (landMark, tile) to point to project textures, adjust keywords/flags (e.g. XRMotionVectorsPass, disable ShadowCaster for one), tweak tiling and base color values.
- Added a Loading screen UI (UXML, USS) and LoadingScreenController.cs plus a new Loading scene and scene metadata.
- Imported new FBX assets (T-Pose, Untitled) and updated Editor build settings / project settings to include the new Loading scene.
These changes migrate rendering code to the Universal Render Pipeline and add a basic loading UI/scene, while updating materials and project settings accordingly.
2026-02-23 21:47:59 -08:00
|
|
|
{
|
2026-03-27 23:57:08 -07:00
|
|
|
"_VBlur"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Pass
|
|
|
|
|
{
|
|
|
|
|
CGPROGRAM
|
|
|
|
|
#pragma vertex vert
|
|
|
|
|
#pragma fragment frag
|
|
|
|
|
#pragma fragmentoption ARB_precision_hint_fastest
|
|
|
|
|
#include "UnityCG.cginc"
|
|
|
|
|
|
|
|
|
|
struct appdata_t {
|
|
|
|
|
float4 vertex : POSITION;
|
|
|
|
|
float2 texcoord: TEXCOORD0;
|
|
|
|
|
float4 color : COLOR;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct v2f {
|
|
|
|
|
float4 vertex : POSITION;
|
|
|
|
|
float4 uvgrab : TEXCOORD0;
|
|
|
|
|
float2 uvmain : TEXCOORD1;
|
|
|
|
|
float4 color : COLOR;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sampler2D _MainTex;
|
|
|
|
|
float4 _MainTex_ST;
|
|
|
|
|
|
|
|
|
|
v2f vert (appdata_t v) {
|
|
|
|
|
v2f o;
|
|
|
|
|
o.vertex = UnityObjectToClipPos(v.vertex);
|
|
|
|
|
|
|
|
|
|
#if UNITY_UV_STARTS_AT_TOP
|
|
|
|
|
float scale = -1.0;
|
|
|
|
|
#else
|
|
|
|
|
float scale = 1.0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
o.uvgrab.xy = (float2(o.vertex.x, o.vertex.y * scale) + o.vertex.w) * 0.5;
|
|
|
|
|
o.uvgrab.zw = o.vertex.zw;
|
|
|
|
|
|
|
|
|
|
o.uvmain = TRANSFORM_TEX(v.texcoord, _MainTex);
|
|
|
|
|
o.color = v.color;
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sampler2D _VBlur;
|
|
|
|
|
float4 _VBlur_TexelSize;
|
|
|
|
|
float _Size;
|
|
|
|
|
//fixed4 _TintColor;
|
|
|
|
|
|
|
|
|
|
half4 frag( v2f i ) : COLOR
|
|
|
|
|
{
|
|
|
|
|
float alpha = tex2D(_MainTex, i.uvmain).a * i.color.a;
|
|
|
|
|
half4 sum = half4(0,0,0,0);
|
|
|
|
|
|
|
|
|
|
#define GRABPIXEL(weight,kernely) tex2Dproj( _VBlur, UNITY_PROJ_COORD(float4(i.uvgrab.x, i.uvgrab.y + _VBlur_TexelSize.y * kernely * _Size * alpha, i.uvgrab.z, i.uvgrab.w))) * weight
|
|
|
|
|
|
|
|
|
|
sum += GRABPIXEL(0.05, -4.0);
|
|
|
|
|
sum += GRABPIXEL(0.09, -3.0);
|
|
|
|
|
sum += GRABPIXEL(0.12, -2.0);
|
|
|
|
|
sum += GRABPIXEL(0.15, -1.0);
|
|
|
|
|
sum += GRABPIXEL(0.18, 0.0);
|
|
|
|
|
sum += GRABPIXEL(0.15, +1.0);
|
|
|
|
|
sum += GRABPIXEL(0.12, +2.0);
|
|
|
|
|
sum += GRABPIXEL(0.09, +3.0);
|
|
|
|
|
sum += GRABPIXEL(0.05, +4.0);
|
|
|
|
|
|
|
|
|
|
return sum + i.color * alpha;
|
|
|
|
|
}
|
|
|
|
|
ENDCG
|
2026-02-05 05:07:55 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|