fix:代码提交

This commit is contained in:
zhangjiajia
2026-03-03 11:30:53 +08:00
parent adf60cc8df
commit 21ebd4c951
2520 changed files with 178964 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#ifndef URPWATER_DYNAMIC_INCLUDED
#define URPWATER_DYNAMIC_INCLUDED
#include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl"
#include "URPWaterVariables.hlsl"
#include "URPWaterHelpers.hlsl"
void ComputeDynamicData(inout GlobalData data, Varyings IN)
{
#if _DYNAMIC_EFFECTS_ON
data.dynamicData = SAMPLE_TEXTURE2D(_DynamicEffectsTexture, URPWater_linear_clamp_sampler, IN.projectionUV);
#endif
}
#endif