加入很多新内容,这波一块交了

This commit is contained in:
2026-04-08 20:53:41 +08:00
parent d9376833b6
commit 85dfff28dd
128 changed files with 14546 additions and 474 deletions
@@ -0,0 +1,21 @@
using System;
using UnityEngine;
using UnityEngine.Rendering;
using UnityEngine.Rendering.Universal;
[Serializable]
[VolumeComponentMenu("Post-processing/Bansonic/Global Monochrome")]
[SupportedOnRenderPipeline(typeof(UniversalRenderPipelineAsset))]
public sealed class GlobalMonochromeVolume : VolumeComponent, IPostProcessComponent
{
[Tooltip("Base monochrome intensity from the volume profile.")]
public ClampedFloatParameter intensity = new ClampedFloatParameter(0f, 0f, 1f);
[Tooltip("Whether this effect should run in SceneView cameras.")]
public BoolParameter affectSceneView = new BoolParameter(false);
public bool IsActive() => intensity.value > 0.0001f;
[Obsolete("Unused #from(2023.1)", false)]
public bool IsTileCompatible() => false;
}