升级6.4.升级水,升级天气

This commit is contained in:
2026-04-05 00:26:54 +08:00
parent 63bc9b5536
commit 5f7cbfb713
635 changed files with 34718 additions and 22567 deletions

View File

@@ -41,6 +41,22 @@ struct Flow
flow._Flow = i_Flow;
return flow;
}
static Flow Make
(
const half2 i_Flow,
const float4 i_FlowParameters
)
{
Flow flow;
flow._Offset0 = i_FlowParameters.x;
flow._Weight0 = i_FlowParameters.y;
flow._Offset1 = i_FlowParameters.z;
flow._Weight1 = i_FlowParameters.w;
flow._Period = 1.0;
flow._Flow = i_Flow;
return flow;
}
};
m_CrestNameSpaceEnd