尝试进一步优化
This commit is contained in:
@@ -213,7 +213,7 @@ Material:
|
||||
- _Dst: 10
|
||||
- _DstBlend: 0
|
||||
- _DstBlendAlpha: 0
|
||||
- _EdgeValue: 0.9463588
|
||||
- _EdgeValue: 0.34460104
|
||||
- _EnvironmentReflections: 1
|
||||
- _FNLfanxiangkaiguan: 0
|
||||
- _Face: 1
|
||||
@@ -258,7 +258,7 @@ Material:
|
||||
- _Mask_scale: 1
|
||||
- _Metallic: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Opacity: 0.0536412
|
||||
- _Opacity: 0.65539896
|
||||
- _Parallax: 0.005
|
||||
- _Pass: 0
|
||||
- _QueueOffset: 0
|
||||
|
||||
BIN
Assets/FR2_Cache.asset
LFS
BIN
Assets/FR2_Cache.asset
LFS
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -38,25 +38,9 @@ Shader "SLS/Postprocessing/AnimeBloom"
|
||||
SAMPLER(sampler_BloomTex);
|
||||
|
||||
// =====================================================
|
||||
// HDR 编解码(与 Unity 原生 Bloom.shader 完全一致)
|
||||
// 在线性工作流下 encode/decode 是 no-op,但写清楚以防 gamma 空间项目
|
||||
// 我们去除了 EncodeHDR / DecodeHDR,因为我们在 BeforePostProcess 运行
|
||||
// 且面向移动端,节省 ALU 开销,直接进行线性空间计算。
|
||||
// =====================================================
|
||||
half4 EncodeHDR(half3 color)
|
||||
{
|
||||
#if UNITY_COLORSPACE_GAMMA
|
||||
color = sqrt(color);
|
||||
#endif
|
||||
return half4(color, 1.0);
|
||||
}
|
||||
|
||||
half3 DecodeHDR(half4 data)
|
||||
{
|
||||
half3 color = data.xyz;
|
||||
#if UNITY_COLORSPACE_GAMMA
|
||||
color *= color;
|
||||
#endif
|
||||
return color;
|
||||
}
|
||||
|
||||
// =====================================================
|
||||
// Pass 0: Prefilter — 提取超过阈值的高亮像素
|
||||
@@ -65,7 +49,7 @@ Shader "SLS/Postprocessing/AnimeBloom"
|
||||
half4 FragPrefilter(Varyings input) : SV_Target
|
||||
{
|
||||
float2 uv = input.texcoord;
|
||||
half3 color = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv));
|
||||
half3 color = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv).rgb;
|
||||
|
||||
// 1. 亮度钳制(防止极亮萤火虫像素跳变)
|
||||
color = min(color, ClampMax);
|
||||
@@ -77,10 +61,10 @@ Shader "SLS/Postprocessing/AnimeBloom"
|
||||
half multiplier = max(brightness - Threshold, softness) / max(brightness, 1e-4);
|
||||
color *= multiplier;
|
||||
|
||||
// 3. 防止 NaN 传播(负值在 EncodeHDR sqrt 时会产生 NaN)
|
||||
// 3. 防止 NaN 传播
|
||||
color = max(color, 0);
|
||||
|
||||
return EncodeHDR(color);
|
||||
return half4(color, 1.0);
|
||||
}
|
||||
|
||||
// =====================================================
|
||||
@@ -96,17 +80,17 @@ Shader "SLS/Postprocessing/AnimeBloom"
|
||||
float2 ts = _BlitTexture_TexelSize.xy * _KernelScale;
|
||||
|
||||
// 中心点(权重 4)
|
||||
half3 c0 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv));
|
||||
half3 c0 = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv).rgb;
|
||||
|
||||
// 4 个对角偏移各 0.5 像素(恰好落在 4 像素的双线性插值中心)
|
||||
half3 c1 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 0.5, 0.5) * ts));
|
||||
half3 c2 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2(-0.5, 0.5) * ts));
|
||||
half3 c3 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2(-0.5, -0.5) * ts));
|
||||
half3 c4 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 0.5, -0.5) * ts));
|
||||
// 4 个对角偏移
|
||||
half3 c1 = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 0.5, 0.5) * ts).rgb;
|
||||
half3 c2 = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2(-0.5, 0.5) * ts).rgb;
|
||||
half3 c3 = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2(-0.5, -0.5) * ts).rgb;
|
||||
half3 c4 = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 0.5, -0.5) * ts).rgb;
|
||||
|
||||
// 加权平均:(c0*4 + c1+c2+c3+c4) / 8
|
||||
// 加权平均
|
||||
half3 color = (1.0 / 8.0) * (c0 * 4.0 + c1 + c2 + c3 + c4);
|
||||
return EncodeHDR(color);
|
||||
return half4(color, 1.0);
|
||||
}
|
||||
|
||||
// =====================================================
|
||||
@@ -124,32 +108,20 @@ Shader "SLS/Postprocessing/AnimeBloom"
|
||||
half4 FragDualUpsample(Varyings input) : SV_Target
|
||||
{
|
||||
float2 uv = input.texcoord;
|
||||
// 同样乘以 _KernelScale
|
||||
float2 ts = _BlitTexture_TexelSize.xy * _KernelScale;
|
||||
|
||||
// Dual Kawase 8-tap 升采样:4 对角 + 4 正交
|
||||
// 正交距离 = 1.0 texel,对角距离 = 0.5 texel(与原生完全一致)
|
||||
half3 c1 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 0.5, 0.5) * ts));
|
||||
half3 c2 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2(-0.5, 0.5) * ts));
|
||||
half3 c3 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2(-0.5, -0.5) * ts));
|
||||
half3 c4 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 0.5, -0.5) * ts));
|
||||
// 【移动端终极杀器】:剥离所有冗余采样!
|
||||
// 从 9 采样(原生高端/老版)降低为 2 采样(原生移动端级别)
|
||||
// 凭借前面巨大的 Spread 范围,仅使用最基础的双线性过滤合并即可。
|
||||
|
||||
// 1. highMip = 当前层级的高清纹理
|
||||
half3 highMip = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv).rgb;
|
||||
|
||||
half3 c5 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2(-1.0, 0.0) * ts));
|
||||
half3 c6 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 1.0, 0.0) * ts));
|
||||
half3 c7 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 0.0, 1.0) * ts));
|
||||
half3 c8 = DecodeHDR(SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv + float2( 0.0, -1.0) * ts));
|
||||
// 2. lowMip = 上一级的极致模糊光晕
|
||||
half3 lowMip = SAMPLE_TEXTURE2D(_SourceTexLowMip, sampler_LinearClamp, uv).rgb;
|
||||
|
||||
// 加权平均 (4角×2 + 4正交×1) / 12,产生柔和的钟形分布
|
||||
half3 highMip = (1.0 / 12.0) * ((c1 + c2 + c3 + c4) * 2.0 + c5 + c6 + c7 + c8);
|
||||
|
||||
// lowMip = 来自更低分辨率层(Up[i+1])的扩散光晕,双线性采样
|
||||
half3 lowMip = DecodeHDR(SAMPLE_TEXTURE2D(_SourceTexLowMip, sampler_LinearClamp, uv));
|
||||
|
||||
// 【核心公式,与原生完全一致】
|
||||
// Scatter 控制光晕扩散程度:0=只有当前层细节,1=完全使用模糊层
|
||||
// 始终能量守恒,绝对不会产生死白
|
||||
// 物理守恒 Lerp 合并
|
||||
half3 result = lerp(highMip, lowMip, Scatter);
|
||||
return EncodeHDR(result);
|
||||
return half4(result, 1.0);
|
||||
}
|
||||
|
||||
// =====================================================
|
||||
@@ -164,8 +136,8 @@ Shader "SLS/Postprocessing/AnimeBloom"
|
||||
// 原始 HDR 画面
|
||||
half4 baseColor = SAMPLE_TEXTURE2D_X(_BlitTexture, sampler_LinearClamp, uv);
|
||||
|
||||
// Bloom 纹理(已经过多轮 Dual Kawase 升降采样)
|
||||
half3 bloom = DecodeHDR(SAMPLE_TEXTURE2D(_BloomTex, sampler_BloomTex, uv));
|
||||
// Bloom 纹理
|
||||
half3 bloom = SAMPLE_TEXTURE2D(_BloomTex, sampler_BloomTex, uv).rgb;
|
||||
|
||||
// 应用强度和染色(_BloomParams.yzw 是亮度归一化的 tint)
|
||||
float intensity = _BloomParams.x;
|
||||
|
||||
@@ -2,6 +2,7 @@ using Echovoid.Runtime.Behavior.Rendering;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Rendering;
|
||||
using UnityEngine.Rendering.Universal;
|
||||
using UnityEngine.Experimental.Rendering;
|
||||
|
||||
namespace SLSUtilities.Rendering.PostProcessing
|
||||
{
|
||||
@@ -60,6 +61,13 @@ namespace SLSUtilities.Rendering.PostProcessing
|
||||
var desc = renderingData.cameraData.cameraTargetDescriptor;
|
||||
desc.msaaSamples = 1;
|
||||
desc.depthBufferBits = 0;
|
||||
|
||||
// 【移动端极限优化】:强制降级到 32位 HDR 格式 (B10G11R11),
|
||||
// 相比主相机默认的 64位 R16G16B16A16,带宽消耗直接砍半,且肉眼几乎无损!
|
||||
if (SystemInfo.IsFormatSupported(GraphicsFormat.B10G11R11_UFloatPack32, FormatUsage.Linear | FormatUsage.Render))
|
||||
{
|
||||
desc.graphicsFormat = GraphicsFormat.B10G11R11_UFloatPack32;
|
||||
}
|
||||
|
||||
// ─────────────────────────────────────────────────────────────
|
||||
// 1. 参数打包(完全对齐 Unity SetupBloom 的计算逻辑)
|
||||
|
||||
Binary file not shown.
@@ -1,6 +1,6 @@
|
||||
ManifestFileVersion: 0
|
||||
UnityVersion: 6000.3.7f1
|
||||
CRC: 2722740421
|
||||
CRC: 858636519
|
||||
HashAppended: 0
|
||||
AssetBundleManifest:
|
||||
AssetBundleInfos:
|
||||
|
||||
Binary file not shown.
@@ -1,16 +1,16 @@
|
||||
ManifestFileVersion: 0
|
||||
UnityVersion: 6000.3.7f1
|
||||
CRC: 1705408498
|
||||
CRC: 3067715901
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: dcb7eafe5fe8fd5f7f08ee477246925d
|
||||
Hash: 6abcdfd9cae8dff022735fc0aa0fb26c
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: dfed41e3b38758e5f34df30221d719dc
|
||||
IncrementalBuildHash:
|
||||
serializedVersion: 2
|
||||
Hash: db86d54c0173e0d8d7208360fc6d2ff1
|
||||
Hash: bd6a02586497055e4a2ac07470e28b23
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
|
||||
Binary file not shown.
@@ -1,16 +1,16 @@
|
||||
ManifestFileVersion: 0
|
||||
UnityVersion: 6000.3.7f1
|
||||
CRC: 1026676896
|
||||
CRC: 512875756
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 035eb532437484b1504facfc94af2c42
|
||||
Hash: 67971a4a5f9fd6e3e13b4242b93ad48d
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 8cc3f86bb5dbc7fe3d0bf9f241837627
|
||||
IncrementalBuildHash:
|
||||
serializedVersion: 2
|
||||
Hash: 4920d6b19d95b84e5efacc9e10f4ab72
|
||||
Hash: 0765c4d1afe426f651f0acf85a5e7491
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
|
||||
@@ -791,6 +791,7 @@ Material:
|
||||
- _VertexOffset_Vec: {r: 0, g: 0, b: 1, a: 0}
|
||||
- _fnl_color: {r: 3.4969227, g: 12.844467, b: 3.4969227, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &3905949624757751178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
|
||||
@@ -570,6 +570,7 @@ Material:
|
||||
- _VertexOffset_Vec: {r: 0, g: 0, b: 1, a: 0}
|
||||
- _fnl_color: {r: 47.93726, g: 19.422365, b: 13.301959, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &3905949624757751178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
|
||||
@@ -574,6 +574,7 @@ Material:
|
||||
- _VertexOffset_Vec: {r: 0, g: 0, b: 1, a: 0}
|
||||
- _fnl_color: {r: 30.209375, g: 30.209375, b: 30.209375, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &3905949624757751178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
|
||||
@@ -257,7 +257,7 @@ Material:
|
||||
- _W9ParticleShaderColorChannelFlag: 3
|
||||
- _W9ParticleShaderFlags: 141320
|
||||
- _W9ParticleShaderFlags1: 8388608
|
||||
- _W9ParticleShaderGUIFoldToggle: 140509196
|
||||
- _W9ParticleShaderGUIFoldToggle: 140509197
|
||||
- _W9ParticleShaderGUIFoldToggle1: 0
|
||||
- _W9ParticleShaderGUIFoldToggle2: 8
|
||||
- _W9ParticleShaderWrapFlags: 0
|
||||
@@ -792,6 +792,7 @@ Material:
|
||||
- _VertexOffset_Vec: {r: 0, g: 0, b: 1, a: 0}
|
||||
- _fnl_color: {r: 29.735334, g: 104.77117, b: 110.130875, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &3905949624757751178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
|
||||
@@ -790,6 +790,7 @@ Material:
|
||||
- _VertexOffset_Vec: {r: 0, g: 0, b: 1, a: 0}
|
||||
- _fnl_color: {r: 6.9360123, g: 24.438742, b: 25.688936, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &3905949624757751178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
|
||||
@@ -791,6 +791,7 @@ Material:
|
||||
- _VertexOffset_Vec: {r: 0, g: 0, b: 1, a: 0}
|
||||
- _fnl_color: {r: 47.937256, g: 33.97342, b: 13.050981, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &3905949624757751178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
|
||||
@@ -791,6 +791,7 @@ Material:
|
||||
- _VertexOffset_Vec: {r: 0.4, g: 0.4, b: 0.2, a: 0}
|
||||
- _fnl_color: {r: 16.948381, g: 3.7574239, b: 3.7574239, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &3905949624757751178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
|
||||
@@ -4758,7 +4758,7 @@ ParticleSystem:
|
||||
vectorLabel1_3: W
|
||||
--- !u!199 &6662076549807561781
|
||||
ParticleSystemRenderer:
|
||||
serializedVersion: 6
|
||||
serializedVersion: 7
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
@@ -4774,6 +4774,11 @@ ParticleSystemRenderer:
|
||||
m_ReflectionProbeUsage: 0
|
||||
m_RayTracingMode: 0
|
||||
m_RayTraceProcedural: 0
|
||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
||||
m_RayTracingAccelStructBuildFlags: 1
|
||||
m_SmallMeshCulling: 1
|
||||
m_ForceMeshLod: -1
|
||||
m_MeshLodSelectionBias: 0
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
@@ -4795,9 +4800,11 @@ ParticleSystemRenderer:
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_GlobalIlluminationMeshLod: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 1
|
||||
m_MaskInteraction: 0
|
||||
m_RenderMode: 1
|
||||
m_MeshDistribution: 0
|
||||
m_SortMode: 0
|
||||
@@ -4829,7 +4836,6 @@ ParticleSystemRenderer:
|
||||
m_MeshWeighting1: 1
|
||||
m_MeshWeighting2: 1
|
||||
m_MeshWeighting3: 1
|
||||
m_MaskInteraction: 0
|
||||
--- !u!1 &5199942171001745879
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -9594,7 +9600,7 @@ ParticleSystem:
|
||||
vectorLabel1_3: W
|
||||
--- !u!199 &8644577418426854476
|
||||
ParticleSystemRenderer:
|
||||
serializedVersion: 6
|
||||
serializedVersion: 7
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
@@ -9610,6 +9616,11 @@ ParticleSystemRenderer:
|
||||
m_ReflectionProbeUsage: 0
|
||||
m_RayTracingMode: 0
|
||||
m_RayTraceProcedural: 0
|
||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
||||
m_RayTracingAccelStructBuildFlags: 1
|
||||
m_SmallMeshCulling: 1
|
||||
m_ForceMeshLod: -1
|
||||
m_MeshLodSelectionBias: 0
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
@@ -9631,9 +9642,11 @@ ParticleSystemRenderer:
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_GlobalIlluminationMeshLod: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 0
|
||||
m_MaskInteraction: 0
|
||||
m_RenderMode: 0
|
||||
m_MeshDistribution: 0
|
||||
m_SortMode: 0
|
||||
@@ -9665,7 +9678,6 @@ ParticleSystemRenderer:
|
||||
m_MeshWeighting1: 1
|
||||
m_MeshWeighting2: 1
|
||||
m_MeshWeighting3: 1
|
||||
m_MaskInteraction: 0
|
||||
--- !u!1 &6422879766326712376
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -14491,7 +14503,7 @@ ParticleSystem:
|
||||
vectorLabel1_3: W
|
||||
--- !u!199 &2160428345934047756
|
||||
ParticleSystemRenderer:
|
||||
serializedVersion: 6
|
||||
serializedVersion: 7
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
@@ -14507,6 +14519,11 @@ ParticleSystemRenderer:
|
||||
m_ReflectionProbeUsage: 0
|
||||
m_RayTracingMode: 0
|
||||
m_RayTraceProcedural: 0
|
||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
||||
m_RayTracingAccelStructBuildFlags: 1
|
||||
m_SmallMeshCulling: 1
|
||||
m_ForceMeshLod: -1
|
||||
m_MeshLodSelectionBias: 0
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
@@ -14528,9 +14545,11 @@ ParticleSystemRenderer:
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_GlobalIlluminationMeshLod: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 1
|
||||
m_MaskInteraction: 0
|
||||
m_RenderMode: 0
|
||||
m_MeshDistribution: 0
|
||||
m_SortMode: 0
|
||||
@@ -14562,7 +14581,6 @@ ParticleSystemRenderer:
|
||||
m_MeshWeighting1: 1
|
||||
m_MeshWeighting2: 1
|
||||
m_MeshWeighting3: 1
|
||||
m_MaskInteraction: 0
|
||||
--- !u!1 &6565824401432260214
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -19321,7 +19339,7 @@ ParticleSystem:
|
||||
vectorLabel1_3: W
|
||||
--- !u!199 &1305453564855996846
|
||||
ParticleSystemRenderer:
|
||||
serializedVersion: 6
|
||||
serializedVersion: 7
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
@@ -19337,6 +19355,11 @@ ParticleSystemRenderer:
|
||||
m_ReflectionProbeUsage: 0
|
||||
m_RayTracingMode: 0
|
||||
m_RayTraceProcedural: 0
|
||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
||||
m_RayTracingAccelStructBuildFlags: 1
|
||||
m_SmallMeshCulling: 1
|
||||
m_ForceMeshLod: -1
|
||||
m_MeshLodSelectionBias: 0
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
@@ -19358,9 +19381,11 @@ ParticleSystemRenderer:
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_GlobalIlluminationMeshLod: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 2
|
||||
m_MaskInteraction: 0
|
||||
m_RenderMode: 0
|
||||
m_MeshDistribution: 0
|
||||
m_SortMode: 0
|
||||
@@ -19392,7 +19417,6 @@ ParticleSystemRenderer:
|
||||
m_MeshWeighting1: 1
|
||||
m_MeshWeighting2: 1
|
||||
m_MeshWeighting3: 1
|
||||
m_MaskInteraction: 0
|
||||
--- !u!1 &6969281223192018514
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -24151,7 +24175,7 @@ ParticleSystem:
|
||||
vectorLabel1_3: W
|
||||
--- !u!199 &6907807580340894660
|
||||
ParticleSystemRenderer:
|
||||
serializedVersion: 6
|
||||
serializedVersion: 7
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
@@ -24167,6 +24191,11 @@ ParticleSystemRenderer:
|
||||
m_ReflectionProbeUsage: 0
|
||||
m_RayTracingMode: 0
|
||||
m_RayTraceProcedural: 0
|
||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
||||
m_RayTracingAccelStructBuildFlags: 1
|
||||
m_SmallMeshCulling: 1
|
||||
m_ForceMeshLod: -1
|
||||
m_MeshLodSelectionBias: 0
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
@@ -24188,9 +24217,11 @@ ParticleSystemRenderer:
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_GlobalIlluminationMeshLod: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 2
|
||||
m_MaskInteraction: 0
|
||||
m_RenderMode: 0
|
||||
m_MeshDistribution: 0
|
||||
m_SortMode: 0
|
||||
@@ -24222,7 +24253,6 @@ ParticleSystemRenderer:
|
||||
m_MeshWeighting1: 1
|
||||
m_MeshWeighting2: 1
|
||||
m_MeshWeighting3: 1
|
||||
m_MaskInteraction: 0
|
||||
--- !u!1 &7142595897816035270
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -29039,7 +29069,7 @@ ParticleSystem:
|
||||
vectorLabel1_3: W
|
||||
--- !u!199 &3881543721809062869
|
||||
ParticleSystemRenderer:
|
||||
serializedVersion: 6
|
||||
serializedVersion: 7
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
@@ -29055,6 +29085,11 @@ ParticleSystemRenderer:
|
||||
m_ReflectionProbeUsage: 0
|
||||
m_RayTracingMode: 0
|
||||
m_RayTraceProcedural: 0
|
||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
||||
m_RayTracingAccelStructBuildFlags: 1
|
||||
m_SmallMeshCulling: 1
|
||||
m_ForceMeshLod: -1
|
||||
m_MeshLodSelectionBias: 0
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
@@ -29076,9 +29111,11 @@ ParticleSystemRenderer:
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_GlobalIlluminationMeshLod: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 2
|
||||
m_MaskInteraction: 0
|
||||
m_RenderMode: 0
|
||||
m_MeshDistribution: 0
|
||||
m_SortMode: 0
|
||||
@@ -29110,7 +29147,6 @@ ParticleSystemRenderer:
|
||||
m_MeshWeighting1: 1
|
||||
m_MeshWeighting2: 1
|
||||
m_MeshWeighting3: 1
|
||||
m_MaskInteraction: 0
|
||||
--- !u!1 &8145642094151385667
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -33869,7 +33905,7 @@ ParticleSystem:
|
||||
vectorLabel1_3: W
|
||||
--- !u!199 &3615655069636618867
|
||||
ParticleSystemRenderer:
|
||||
serializedVersion: 6
|
||||
serializedVersion: 7
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
@@ -33885,6 +33921,11 @@ ParticleSystemRenderer:
|
||||
m_ReflectionProbeUsage: 0
|
||||
m_RayTracingMode: 0
|
||||
m_RayTraceProcedural: 0
|
||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
||||
m_RayTracingAccelStructBuildFlags: 1
|
||||
m_SmallMeshCulling: 1
|
||||
m_ForceMeshLod: -1
|
||||
m_MeshLodSelectionBias: 0
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
@@ -33906,9 +33947,11 @@ ParticleSystemRenderer:
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_GlobalIlluminationMeshLod: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 1
|
||||
m_MaskInteraction: 0
|
||||
m_RenderMode: 1
|
||||
m_MeshDistribution: 0
|
||||
m_SortMode: 0
|
||||
@@ -33940,4 +33983,3 @@ ParticleSystemRenderer:
|
||||
m_MeshWeighting1: 1
|
||||
m_MeshWeighting2: 1
|
||||
m_MeshWeighting3: 1
|
||||
m_MaskInteraction: 0
|
||||
|
||||
@@ -1,6 +1,30 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &1
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.ContainerWindow
|
||||
m_PixelRect:
|
||||
serializedVersion: 2
|
||||
x: -1969.3333
|
||||
y: 374.00003
|
||||
width: 1704
|
||||
height: 880.6667
|
||||
m_ShowMode: 0
|
||||
m_Title: Render Graph Viewer
|
||||
m_RootView: {fileID: 4}
|
||||
m_MinSize: {x: 880, y: 326}
|
||||
m_MaxSize: {x: 4000, y: 4026}
|
||||
m_Maximized: 0
|
||||
--- !u!114 &2
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -20,11 +44,62 @@ MonoBehaviour:
|
||||
height: 869.3334
|
||||
m_ShowMode: 4
|
||||
m_Title: Inspector
|
||||
m_RootView: {fileID: 2}
|
||||
m_RootView: {fileID: 5}
|
||||
m_MinSize: {x: 875, y: 300}
|
||||
m_MaxSize: {x: 10000, y: 10000}
|
||||
m_Maximized: 1
|
||||
--- !u!114 &2
|
||||
--- !u!114 &3
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name: RenderGraphViewer
|
||||
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.DockArea
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1704
|
||||
height: 880.6667
|
||||
m_MinSize: {x: 880, y: 326}
|
||||
m_MaxSize: {x: 4000, y: 4026}
|
||||
m_ActualView: {fileID: 16}
|
||||
m_Panes:
|
||||
- {fileID: 16}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 0
|
||||
--- !u!114 &4
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.SplitView
|
||||
m_Children:
|
||||
- {fileID: 3}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1704
|
||||
height: 880.6667
|
||||
m_MinSize: {x: 880, y: 326}
|
||||
m_MaxSize: {x: 4000, y: 4026}
|
||||
vertical: 0
|
||||
controlID: 128051
|
||||
draggingID: 0
|
||||
--- !u!114 &5
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -37,9 +112,9 @@ MonoBehaviour:
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children:
|
||||
- {fileID: 3}
|
||||
- {fileID: 5}
|
||||
- {fileID: 4}
|
||||
- {fileID: 6}
|
||||
- {fileID: 8}
|
||||
- {fileID: 7}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
@@ -52,7 +127,7 @@ MonoBehaviour:
|
||||
m_TopViewHeight: 36
|
||||
m_UseBottomView: 1
|
||||
m_BottomViewHeight: 20
|
||||
--- !u!114 &3
|
||||
--- !u!114 &6
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -73,8 +148,8 @@ MonoBehaviour:
|
||||
height: 36
|
||||
m_MinSize: {x: 50, y: 50}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 13}
|
||||
--- !u!114 &4
|
||||
m_ActualView: {fileID: 17}
|
||||
--- !u!114 &7
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -95,7 +170,7 @@ MonoBehaviour:
|
||||
height: 20
|
||||
m_MinSize: {x: 0, y: 0}
|
||||
m_MaxSize: {x: 0, y: 0}
|
||||
--- !u!114 &5
|
||||
--- !u!114 &8
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -108,7 +183,7 @@ MonoBehaviour:
|
||||
m_Name:
|
||||
m_EditorClassIdentifier: UnityEditor.dll::UnityEditor.SplitView
|
||||
m_Children:
|
||||
- {fileID: 6}
|
||||
- {fileID: 9}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
@@ -118,9 +193,9 @@ MonoBehaviour:
|
||||
m_MinSize: {x: 300, y: 112}
|
||||
m_MaxSize: {x: 24288, y: 16192}
|
||||
vertical: 1
|
||||
controlID: 11030
|
||||
controlID: 55
|
||||
draggingID: 0
|
||||
--- !u!114 &6
|
||||
--- !u!114 &9
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -133,8 +208,8 @@ MonoBehaviour:
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children:
|
||||
- {fileID: 7}
|
||||
- {fileID: 12}
|
||||
- {fileID: 10}
|
||||
- {fileID: 15}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
@@ -144,9 +219,9 @@ MonoBehaviour:
|
||||
m_MinSize: {x: 300, y: 112}
|
||||
m_MaxSize: {x: 24288, y: 16192}
|
||||
vertical: 0
|
||||
controlID: 11031
|
||||
controlID: 56
|
||||
draggingID: 0
|
||||
--- !u!114 &7
|
||||
--- !u!114 &10
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -159,8 +234,8 @@ MonoBehaviour:
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children:
|
||||
- {fileID: 8}
|
||||
- {fileID: 11}
|
||||
- {fileID: 14}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
@@ -170,9 +245,9 @@ MonoBehaviour:
|
||||
m_MinSize: {x: 200, y: 112}
|
||||
m_MaxSize: {x: 16192, y: 16192}
|
||||
vertical: 1
|
||||
controlID: 11005
|
||||
controlID: 57
|
||||
draggingID: 0
|
||||
--- !u!114 &8
|
||||
--- !u!114 &11
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -185,8 +260,8 @@ MonoBehaviour:
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children:
|
||||
- {fileID: 9}
|
||||
- {fileID: 10}
|
||||
- {fileID: 12}
|
||||
- {fileID: 13}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
@@ -196,9 +271,9 @@ MonoBehaviour:
|
||||
m_MinSize: {x: 200, y: 56}
|
||||
m_MaxSize: {x: 16192, y: 8096}
|
||||
vertical: 0
|
||||
controlID: 11006
|
||||
controlID: 58
|
||||
draggingID: 0
|
||||
--- !u!114 &9
|
||||
--- !u!114 &12
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -219,12 +294,12 @@ MonoBehaviour:
|
||||
height: 570.6667
|
||||
m_MinSize: {x: 201, y: 226}
|
||||
m_MaxSize: {x: 4001, y: 4026}
|
||||
m_ActualView: {fileID: 15}
|
||||
m_ActualView: {fileID: 19}
|
||||
m_Panes:
|
||||
- {fileID: 15}
|
||||
- {fileID: 19}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 0
|
||||
--- !u!114 &10
|
||||
--- !u!114 &13
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -245,15 +320,14 @@ MonoBehaviour:
|
||||
height: 570.6667
|
||||
m_MinSize: {x: 202, y: 226}
|
||||
m_MaxSize: {x: 4002, y: 4026}
|
||||
m_ActualView: {fileID: 14}
|
||||
m_ActualView: {fileID: 18}
|
||||
m_Panes:
|
||||
- {fileID: 16}
|
||||
- {fileID: 14}
|
||||
- {fileID: 17}
|
||||
- {fileID: 20}
|
||||
- {fileID: 18}
|
||||
- {fileID: 21}
|
||||
m_Selected: 1
|
||||
m_LastSelected: 0
|
||||
--- !u!114 &11
|
||||
--- !u!114 &14
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -274,15 +348,15 @@ MonoBehaviour:
|
||||
height: 242.66663
|
||||
m_MinSize: {x: 231, y: 276}
|
||||
m_MaxSize: {x: 10001, y: 10026}
|
||||
m_ActualView: {fileID: 19}
|
||||
m_ActualView: {fileID: 22}
|
||||
m_Panes:
|
||||
- {fileID: 19}
|
||||
- {fileID: 20}
|
||||
- {fileID: 21}
|
||||
- {fileID: 22}
|
||||
- {fileID: 23}
|
||||
- {fileID: 24}
|
||||
- {fileID: 25}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 1
|
||||
--- !u!114 &12
|
||||
--- !u!114 &15
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -303,15 +377,53 @@ MonoBehaviour:
|
||||
height: 813.3333
|
||||
m_MinSize: {x: 276, y: 76}
|
||||
m_MaxSize: {x: 4001, y: 4026}
|
||||
m_ActualView: {fileID: 23}
|
||||
m_ActualView: {fileID: 26}
|
||||
m_Panes:
|
||||
- {fileID: 23}
|
||||
- {fileID: 24}
|
||||
- {fileID: 25}
|
||||
- {fileID: 26}
|
||||
- {fileID: 27}
|
||||
- {fileID: 28}
|
||||
- {fileID: 29}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 3
|
||||
--- !u!114 &13
|
||||
--- !u!114 &16
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 84ea5d606d0d22a488a9047cff058078, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor::UnityEditor.Rendering.RenderGraphViewer
|
||||
m_MinSize: {x: 880, y: 300}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Render Graph Viewer
|
||||
m_Image: {fileID: 0}
|
||||
m_Tooltip:
|
||||
m_TextWithWhitespace: "Render Graph Viewer\u200B"
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: -1969.3333
|
||||
y: 374.00003
|
||||
width: 1704
|
||||
height: 854.6667
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_ContainerData: []
|
||||
m_DynamicPanelContainerData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_DynamicPanelBehavior: 0
|
||||
--- !u!114 &17
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -619,7 +731,7 @@ MonoBehaviour:
|
||||
m_DynamicPanelContainerData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_DynamicPanelBehavior: 0
|
||||
--- !u!114 &14
|
||||
--- !u!114 &18
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -725,7 +837,7 @@ MonoBehaviour:
|
||||
m_XRRenderMode: 0
|
||||
m_RenderTexture: {fileID: 0}
|
||||
m_showToolbar: 1
|
||||
--- !u!114 &15
|
||||
--- !u!114 &19
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -771,62 +883,23 @@ MonoBehaviour:
|
||||
m_LastClickedID:
|
||||
m_Data: 0
|
||||
m_ExpandedIDs:
|
||||
- m_Data: -566736
|
||||
- m_Data: -566422
|
||||
- m_Data: -564196
|
||||
- m_Data: -561618
|
||||
- m_Data: -558188
|
||||
- m_Data: -557860
|
||||
- m_Data: -513432
|
||||
- m_Data: -498682
|
||||
- m_Data: -366368
|
||||
- m_Data: -363360
|
||||
- m_Data: -362956
|
||||
- m_Data: -338844
|
||||
- m_Data: -283904
|
||||
- m_Data: -283892
|
||||
- m_Data: -281414
|
||||
- m_Data: -278436
|
||||
- m_Data: -278074
|
||||
- m_Data: -255902
|
||||
- m_Data: -236384
|
||||
- m_Data: -236380
|
||||
- m_Data: -236374
|
||||
- m_Data: -236048
|
||||
- m_Data: -236036
|
||||
- m_Data: -233542
|
||||
- m_Data: -212182
|
||||
- m_Data: -212178
|
||||
- m_Data: -212172
|
||||
- m_Data: -211846
|
||||
- m_Data: -211834
|
||||
- m_Data: -209340
|
||||
- m_Data: -187642
|
||||
- m_Data: -187638
|
||||
- m_Data: -187632
|
||||
- m_Data: -187306
|
||||
- m_Data: -187294
|
||||
- m_Data: -187220
|
||||
- m_Data: -121380
|
||||
- m_Data: -55898
|
||||
- m_Data: -55894
|
||||
- m_Data: -55888
|
||||
- m_Data: -55562
|
||||
- m_Data: -55550
|
||||
- m_Data: -55476
|
||||
- m_Data: -35098
|
||||
- m_Data: -35094
|
||||
- m_Data: -35088
|
||||
- m_Data: -34762
|
||||
- m_Data: -34750
|
||||
- m_Data: -34640
|
||||
- m_Data: -220652
|
||||
- m_Data: -220330
|
||||
- m_Data: -218104
|
||||
- m_Data: -215526
|
||||
- m_Data: -191422
|
||||
- m_Data: -158918
|
||||
- m_Data: -158410
|
||||
- m_Data: -155914
|
||||
- m_Data: -115154
|
||||
- m_Data: -111014
|
||||
- m_Data: -87496
|
||||
- m_Data: -1332
|
||||
- m_Data: 113838
|
||||
- m_Data: 222398
|
||||
- m_Data: 123364
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
m_OriginalName:
|
||||
m_Name: par04a
|
||||
m_OriginalName: par04a
|
||||
m_EditFieldRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
@@ -834,13 +907,13 @@ MonoBehaviour:
|
||||
width: 0
|
||||
height: 0
|
||||
m_UserData:
|
||||
m_Data: 0
|
||||
m_Data: 132446
|
||||
m_IsWaitingForDelay: 0
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_OriginalEventType: 0
|
||||
m_IsRenamingFilename: 0
|
||||
m_TrimLeadingAndTrailingWhitespace: 0
|
||||
m_ClientGUIView: {fileID: 9}
|
||||
m_ClientGUIView: {fileID: 12}
|
||||
m_SearchString:
|
||||
m_ExpandedScenes: []
|
||||
m_CurrenRootInstanceID: 0
|
||||
@@ -848,7 +921,7 @@ MonoBehaviour:
|
||||
m_IsLocked: 0
|
||||
m_CurrentSortingName: TransformSorting
|
||||
m_WindowGUID: 4c969a2b90040154d917609493e03593
|
||||
--- !u!114 &16
|
||||
--- !u!114 &20
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -1592,7 +1665,7 @@ MonoBehaviour:
|
||||
m_Rotation:
|
||||
m_Target: {x: -0.2943263, y: 0.04165452, z: -0.0128243575, w: -0.9548516}
|
||||
speed: 2
|
||||
m_Value: {x: -0.2943263, y: 0.04165452, z: -0.0128243575, w: -0.95485157}
|
||||
m_Value: {x: -0.2942867, y: 0.041648913, z: -0.012822632, w: -0.9547231}
|
||||
m_Size:
|
||||
m_Target: 10.775852
|
||||
speed: 2
|
||||
@@ -1617,7 +1690,7 @@ MonoBehaviour:
|
||||
m_LastSceneViewRotation: {x: 0.08635472, y: -0.90288734, z: 0.21522357, w: 0.36232075}
|
||||
m_LastSceneViewOrtho: 0
|
||||
m_Viewpoint:
|
||||
m_SceneView: {fileID: 16}
|
||||
m_SceneView: {fileID: 20}
|
||||
m_CameraOverscanSettings:
|
||||
m_Opacity: 50
|
||||
m_Scale: 1
|
||||
@@ -1630,7 +1703,7 @@ MonoBehaviour:
|
||||
name: Light Overlap
|
||||
section: Baked Global Illumination
|
||||
m_ViewIsLockedToObject: 0
|
||||
--- !u!114 &17
|
||||
--- !u!114 &21
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -1737,79 +1810,7 @@ MonoBehaviour:
|
||||
m_CurrentEditor: 0
|
||||
m_LayerEditor:
|
||||
m_SelectedLayerIndex: 0
|
||||
--- !u!114 &18
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 61
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 41147144ff556e246b736135eb26f185, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier: Unity.RenderPipelines.Core.Editor::UnityEditor.Rendering.DebugWindow
|
||||
m_MinSize: {x: 800, y: 300}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Rendering Debugger
|
||||
m_Image: {fileID: 0}
|
||||
m_Tooltip:
|
||||
m_TextWithWhitespace: "Rendering Debugger\u200B"
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 298.6667
|
||||
y: 78.66667
|
||||
width: 894.66675
|
||||
height: 544.6667
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_ContainerData: []
|
||||
m_DynamicPanelContainerData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_DynamicPanelBehavior: 0
|
||||
m_WidgetStates:
|
||||
m_Keys:
|
||||
- Display Stats -> Frame Stats
|
||||
- Display Stats -> Bottlenecks
|
||||
- Display Stats -> Detailed Stats
|
||||
- Frequently Used -> Rendering Debug
|
||||
- Frequently Used -> Material Filters
|
||||
- Frequently Used -> Lighting Debug Modes
|
||||
- Rendering -> Pixel Validation
|
||||
- Rendering -> HDR Output
|
||||
- Rendering -> GPU Resident Drawer Settings
|
||||
- Rendering -> Occlusion Context Stats
|
||||
- Rendering -> Instance Culler Stats
|
||||
- Rendering -> Render Graph
|
||||
- Material -> Material Validation
|
||||
- Volume -> Camera
|
||||
- Volume -> Component
|
||||
m_Values:
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
m_Settings: {fileID: 0}
|
||||
--- !u!114 &19
|
||||
--- !u!114 &22
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -1859,7 +1860,7 @@ MonoBehaviour:
|
||||
m_SkipHidden: 0
|
||||
m_SearchArea: 1
|
||||
m_Folders:
|
||||
- Assets/Scenes
|
||||
- Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/math/ec/multiplier
|
||||
m_Globs: []
|
||||
m_ProductIds:
|
||||
m_AnyWithAssetOrigin: 0
|
||||
@@ -1869,29 +1870,20 @@ MonoBehaviour:
|
||||
m_ViewMode: 1
|
||||
m_StartGridSize: 16
|
||||
m_LastFolders:
|
||||
- Assets/Scenes
|
||||
- Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/math/ec/multiplier
|
||||
m_LastFoldersGridSize: 16
|
||||
m_LastProjectPath: D:\Projects\ichni Official
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_LastLocalAssetsSearchArea: 1
|
||||
m_FolderTreeState:
|
||||
scrollPos: {x: 0, y: 335.33337}
|
||||
scrollPos: {x: 0, y: 891.3334}
|
||||
m_SelectedIDs:
|
||||
- m_Data: 77820
|
||||
- m_Data: 77876
|
||||
m_LastClickedID:
|
||||
m_Data: 77820
|
||||
m_Data: 77876
|
||||
m_ExpandedIDs:
|
||||
- m_Data: 0
|
||||
- m_Data: 77244
|
||||
- m_Data: 77246
|
||||
- m_Data: 77248
|
||||
- m_Data: 77250
|
||||
- m_Data: 77252
|
||||
- m_Data: 77254
|
||||
- m_Data: 77256
|
||||
- m_Data: 77258
|
||||
- m_Data: 77260
|
||||
- m_Data: 77262
|
||||
- m_Data: 77264
|
||||
- m_Data: 77266
|
||||
@@ -1921,6 +1913,7 @@ MonoBehaviour:
|
||||
- m_Data: 77314
|
||||
- m_Data: 77316
|
||||
- m_Data: 77318
|
||||
- m_Data: 77320
|
||||
- m_Data: 77322
|
||||
- m_Data: 77324
|
||||
- m_Data: 77326
|
||||
@@ -1929,6 +1922,7 @@ MonoBehaviour:
|
||||
- m_Data: 77332
|
||||
- m_Data: 77334
|
||||
- m_Data: 77336
|
||||
- m_Data: 77338
|
||||
- m_Data: 77340
|
||||
- m_Data: 77342
|
||||
- m_Data: 77344
|
||||
@@ -1961,14 +1955,30 @@ MonoBehaviour:
|
||||
- m_Data: 77398
|
||||
- m_Data: 77400
|
||||
- m_Data: 77402
|
||||
- m_Data: 153162
|
||||
- m_Data: 153164
|
||||
- m_Data: 153166
|
||||
- m_Data: 153168
|
||||
- m_Data: 197202
|
||||
- m_Data: 204772
|
||||
- m_Data: 204774
|
||||
- m_Data: 77404
|
||||
- m_Data: 77406
|
||||
- m_Data: 77408
|
||||
- m_Data: 77410
|
||||
- m_Data: 77412
|
||||
- m_Data: 77414
|
||||
- m_Data: 77416
|
||||
- m_Data: 77418
|
||||
- m_Data: 77420
|
||||
- m_Data: 77422
|
||||
- m_Data: 77424
|
||||
- m_Data: 77426
|
||||
- m_Data: 77428
|
||||
- m_Data: 77430
|
||||
- m_Data: 77878
|
||||
- m_Data: 77880
|
||||
- m_Data: 77882
|
||||
- m_Data: 77884
|
||||
- m_Data: 77886
|
||||
- m_Data: 77888
|
||||
- m_Data: 105022
|
||||
- m_Data: 105028
|
||||
- m_Data: 1000000000
|
||||
- m_Data: 2147483647
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -1986,7 +1996,7 @@ MonoBehaviour:
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 1
|
||||
m_TrimLeadingAndTrailingWhitespace: 0
|
||||
m_ClientGUIView: {fileID: 11}
|
||||
m_ClientGUIView: {fileID: 14}
|
||||
m_SearchString:
|
||||
m_CreateAssetUtility:
|
||||
m_EndAction: {fileID: 0}
|
||||
@@ -2001,15 +2011,6 @@ MonoBehaviour:
|
||||
m_Data: 0
|
||||
m_ExpandedIDs:
|
||||
- m_Data: 0
|
||||
- m_Data: 77244
|
||||
- m_Data: 77246
|
||||
- m_Data: 77248
|
||||
- m_Data: 77250
|
||||
- m_Data: 77252
|
||||
- m_Data: 77254
|
||||
- m_Data: 77256
|
||||
- m_Data: 77258
|
||||
- m_Data: 77260
|
||||
- m_Data: 77262
|
||||
- m_Data: 77264
|
||||
- m_Data: 77266
|
||||
@@ -2039,6 +2040,7 @@ MonoBehaviour:
|
||||
- m_Data: 77314
|
||||
- m_Data: 77316
|
||||
- m_Data: 77318
|
||||
- m_Data: 77320
|
||||
- m_Data: 77322
|
||||
- m_Data: 77324
|
||||
- m_Data: 77326
|
||||
@@ -2047,6 +2049,7 @@ MonoBehaviour:
|
||||
- m_Data: 77332
|
||||
- m_Data: 77334
|
||||
- m_Data: 77336
|
||||
- m_Data: 77338
|
||||
- m_Data: 77340
|
||||
- m_Data: 77342
|
||||
- m_Data: 77344
|
||||
@@ -2079,16 +2082,20 @@ MonoBehaviour:
|
||||
- m_Data: 77398
|
||||
- m_Data: 77400
|
||||
- m_Data: 77402
|
||||
- m_Data: 77818
|
||||
- m_Data: 77822
|
||||
- m_Data: 153162
|
||||
- m_Data: 153164
|
||||
- m_Data: 153166
|
||||
- m_Data: 153168
|
||||
- m_Data: 197202
|
||||
- m_Data: 204772
|
||||
- m_Data: 204774
|
||||
- m_Data: 1000000000
|
||||
- m_Data: 77404
|
||||
- m_Data: 77406
|
||||
- m_Data: 77408
|
||||
- m_Data: 77410
|
||||
- m_Data: 77412
|
||||
- m_Data: 77414
|
||||
- m_Data: 77416
|
||||
- m_Data: 77418
|
||||
- m_Data: 77420
|
||||
- m_Data: 77422
|
||||
- m_Data: 77424
|
||||
- m_Data: 77426
|
||||
- m_Data: 77428
|
||||
- m_Data: 77430
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -2125,8 +2132,8 @@ MonoBehaviour:
|
||||
- m_Data: 68026
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
m_OriginalName:
|
||||
m_Name: Tap_HitEffect_G
|
||||
m_OriginalName: Tap_HitEffect_G
|
||||
m_EditFieldRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
@@ -2134,13 +2141,13 @@ MonoBehaviour:
|
||||
width: 0
|
||||
height: 0
|
||||
m_UserData:
|
||||
m_Data: 0
|
||||
m_Data: 104580
|
||||
m_IsWaitingForDelay: 0
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_OriginalEventType: 0
|
||||
m_IsRenamingFilename: 1
|
||||
m_TrimLeadingAndTrailingWhitespace: 0
|
||||
m_ClientGUIView: {fileID: 11}
|
||||
m_ClientGUIView: {fileID: 14}
|
||||
m_CreateAssetUtility:
|
||||
m_EndAction: {fileID: 0}
|
||||
m_InstanceID: 0
|
||||
@@ -2148,11 +2155,11 @@ MonoBehaviour:
|
||||
m_Icon: {fileID: 0}
|
||||
m_ResourceFile:
|
||||
m_NewAssetIndexInList: -1
|
||||
m_ScrollPosition: {x: 0, y: 0}
|
||||
m_ScrollPosition: {x: 0, y: 27.166687}
|
||||
m_GridSize: 16
|
||||
m_SkipHiddenPackages: 0
|
||||
m_DirectoriesAreaWidth: 209
|
||||
--- !u!114 &20
|
||||
--- !u!114 &23
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -2191,7 +2198,7 @@ MonoBehaviour:
|
||||
m_DynamicPanelContainerData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_DynamicPanelBehavior: 0
|
||||
--- !u!114 &21
|
||||
--- !u!114 &24
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -2233,7 +2240,7 @@ MonoBehaviour:
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_LastSelectedObjectID: 48546
|
||||
--- !u!114 &22
|
||||
--- !u!114 &25
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -2271,7 +2278,7 @@ MonoBehaviour:
|
||||
m_DynamicPanelContainerData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_DynamicPanelBehavior: 0
|
||||
--- !u!114 &23
|
||||
--- !u!114 &26
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -2323,7 +2330,7 @@ MonoBehaviour:
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_PreviewWindow: {fileID: 0}
|
||||
--- !u!114 &24
|
||||
--- !u!114 &27
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -2368,14 +2375,14 @@ MonoBehaviour:
|
||||
m_CachedPref: 184.33334
|
||||
m_ControlHash: 1412526313
|
||||
m_PrefName: Preview_InspectorPreview
|
||||
m_LastInspectedObjectInstanceID: -1
|
||||
m_LastInspectedObjectInstanceID: 1454
|
||||
m_LastVerticalScrollValue: 0
|
||||
m_GlobalObjectId:
|
||||
m_InspectorMode: 0
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_PreviewWindow: {fileID: 0}
|
||||
--- !u!114 &25
|
||||
--- !u!114 &28
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@@ -2420,14 +2427,14 @@ MonoBehaviour:
|
||||
m_CachedPref: 165.66669
|
||||
m_ControlHash: 1412526313
|
||||
m_PrefName: Preview_InspectorPreview
|
||||
m_LastInspectedObjectInstanceID: -1
|
||||
m_LastInspectedObjectInstanceID: 1454
|
||||
m_LastVerticalScrollValue: 0
|
||||
m_GlobalObjectId:
|
||||
m_InspectorMode: 0
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_PreviewWindow: {fileID: 0}
|
||||
--- !u!114 &26
|
||||
--- !u!114 &29
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
|
||||
Reference in New Issue
Block a user