提交修改

This commit is contained in:
Bob.Song
2026-03-06 09:44:00 +08:00
parent e125bb869e
commit db7bc90fe2
3631 changed files with 9050 additions and 395938 deletions

View File

@@ -1,69 +0,0 @@
Shader "Game/FullScreen" {
Properties {
_MainTex ("Base (RGB) Trans (A)", 2D) = "black" {}
_Tex2 ("Base2 (RGB) Trans (A)", 2D) = "black" {}
}
SubShader {
Pass {
Tags {"Queue"="Background" "IgnoreProjector"="True" "RenderType"="Background"}
ZWrite Off
Cull Off
Fog { Mode Off }
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
sampler2D _MainTex;
sampler2D _Tex2;
struct appdata {
float4 vertex : POSITION;
float2 texcoord : TEXCOORD0;
float2 texcoord1 : TEXCOORD1;
};
struct v2f {
float4 pos : POSITION;
float2 texcoord : TEXCOORD0;
float2 texcoord1 : TEXCOORD1;
};
float4 _MainTex_ST;
float4 _Tex2_ST;
v2f vert (appdata v)
{
v2f o;
o.texcoord = v.texcoord;
o.texcoord1 = v.texcoord1;
o.pos = v.vertex;
#if UNITY_UV_STARTS_AT_TOP
o.pos.y = -o.pos.y;
#endif
#if SHADER_API_D3D9 || SHADER_API_GLES || SHADER_API_GLES3 || SHADER_API_GLCORE
o.pos.z = 1;
#else
o.pos.z = 0;
#endif
o.pos.w = 1;
return o;
}
half4 frag (v2f i) : COLOR
{
half4 col1 = tex2D(_MainTex, i.texcoord);
half4 col2 = tex2D(_Tex2, i.texcoord1);
col1.rgb *= col1.a;
col1.rgb *= (1-col2.a);
col2.rgb *= col2.a;
col1.a = 1;
col2.a = 1;
return col1 + col2;
}
ENDCG
}
}
}

View File

@@ -1,5 +0,0 @@
fileFormatVersion: 2
guid: 3215886e81b218d41a9de58c554442c0
ShaderImporter:
defaultTextures: []
userData:

View File

@@ -1,77 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &100000
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 5
m_Component:
- component: {fileID: 400000}
- component: {fileID: 2000000}
m_Layer: 5
m_Name: RenderImageCamera
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &400000
Transform:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 100000}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: -0.41}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!20 &2000000
Camera:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 100000}
m_Enabled: 1
serializedVersion: 2
m_ClearFlags: 2
m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
m_NormalizedViewPortRect:
serializedVersion: 2
x: 0
y: 0
width: 1
height: 1
near clip plane: 0.1
far clip plane: 50
field of view: 28
orthographic: 0
orthographic size: 100
m_Depth: 0
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingPath: -1
m_TargetTexture: {fileID: 0}
m_TargetDisplay: 0
m_TargetEye: 3
m_HDR: 0
m_AllowMSAA: 1
m_ForceIntoRT: 0
m_OcclusionCulling: 1
m_StereoConvergence: 10
m_StereoSeparation: 0.022
--- !u!1001 &100100000
Prefab:
m_ObjectHideFlags: 1
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications: []
m_RemovedComponents: []
m_ParentPrefab: {fileID: 0}
m_RootGameObject: {fileID: 100000}
m_IsPrefabParent: 1

View File

@@ -1,4 +0,0 @@
fileFormatVersion: 2
guid: e1401866bdaef3a41b64115e2896151d
NativeFormatImporter:
userData: