Files
Fishing2/Packages/com.jbooth.microverse/Scripts/WindController.cs
2025-06-09 23:23:13 +08:00

154 lines
5.7 KiB
C#

using UnityEngine;
namespace JBooth.MicroVerseCore
{
[ExecuteInEditMode]
public class WindController : MonoBehaviour
{
[Header("General Parameters")]
[Tooltip("Wind Speed in Kilometers per hour")]
public float windSpeed = 30;
[Range(0.0f, 2.0f)]
[Tooltip("Wind Turbulence in percentage of wind Speed")]
public float turbulence = 0.25f;
[Header("Noise Parameters")]
[Tooltip("Texture used for wind turbulence")]
public Texture2D noiseTexture;
[Tooltip("Size of one world tiling patch of the Noise Texture, for bending trees")]
public float bendingWorldSize = 175.0f;
[Tooltip("Size of one world tiling patch of the Noise Texture, for leaf shivering")]
public float leafWorldSize = 10.0f;
[Header("Gust Parameters")]
[Tooltip("Texture used for wind gusts")]
public Texture2D gustTexture;
[Tooltip("Size of one world tiling patch of the Gust Texture, for leaf shivering")]
public float gustWorldSize = 600.0f;
[Tooltip("Wind Gust Speed in Kilometers per hour")]
public float gistSpeed = 50;
[Tooltip("Wind Gust Influence on trees")]
public float gustScale = 1.0f;
[Header("Wind Zones")]
[Tooltip("Wind Gust Influence on trees")]
public WindZone point1;
[Tooltip("Wind Gust Influence on trees")]
public WindZone point2;
[Tooltip("Wind Gust Influence on trees")]
public WindZone point3;
[Tooltip("Wind Gust Influence on trees")]
public WindZone point4;
[Tooltip("Wind Gust Influence on trees")]
Vector4 pos1 = new Vector4();
Vector4 pos2 = new Vector4();
Vector4 pos3 = new Vector4();
Vector4 pos4 = new Vector4();
Vector4 radius = new Vector4();
// Use this for initialization
void Start()
{
ApplySettings();
}
// Update is called once per frame
void Update()
{
ApplySettings();
}
void OnValidate()
{
ApplySettings();
}
static int WIND_SETTINGS_TexNoise = Shader.PropertyToID("WIND_SETTINGS_TexNoise");
static int WIND_SETTINGS_TexGust = Shader.PropertyToID("WIND_SETTINGS_TexGust");
static int WIND_SETTINGS_WorldDirectionAndSpeed = Shader.PropertyToID("WIND_SETTINGS_WorldDirectionAndSpeed");
static int WIND_SETTINGS_FlexNoiseScale = Shader.PropertyToID("WIND_SETTINGS_FlexNoiseScale");
static int WIND_SETTINGS_ShiverNoiseScale = Shader.PropertyToID("WIND_SETTINGS_ShiverNoiseScale");
static int WIND_SETTINGS_Turbulence = Shader.PropertyToID("WIND_SETTINGS_Turbulence");
static int WIND_SETTINGS_GustSpeed = Shader.PropertyToID("WIND_SETTINGS_GustSpeed");
static int WIND_SETTINGS_GustScale = Shader.PropertyToID("WIND_SETTINGS_GustScale");
static int WIND_SETTINGS_GustWorldScale = Shader.PropertyToID("WIND_SETTINGS_GustWorldScale");
void ApplySettings()
{
Shader.SetGlobalTexture(WIND_SETTINGS_TexNoise, noiseTexture);
Shader.SetGlobalTexture(WIND_SETTINGS_TexGust, gustTexture);
Shader.SetGlobalVector(WIND_SETTINGS_WorldDirectionAndSpeed, GetDirectionAndSpeed());
Shader.SetGlobalFloat(WIND_SETTINGS_FlexNoiseScale, 1.0f / Mathf.Max(0.01f, bendingWorldSize));
Shader.SetGlobalFloat(WIND_SETTINGS_ShiverNoiseScale, 1.0f / Mathf.Max(0.01f, leafWorldSize));
Shader.SetGlobalFloat(WIND_SETTINGS_Turbulence, windSpeed * turbulence);
Shader.SetGlobalFloat(WIND_SETTINGS_GustSpeed, gistSpeed);
Shader.SetGlobalFloat(WIND_SETTINGS_GustScale, gustScale);
Shader.SetGlobalFloat(WIND_SETTINGS_GustWorldScale, 1.0f / Mathf.Max(0.01f, gustWorldSize));
if (point1 != null)
{
pos1 = new Vector4(point1.transform.position.x, point1.transform.position.y, point1.transform.position.z, point1.windMain * 0.2777f);
radius[0] = point1.radius;
}
else
{
pos1 = new Vector4(0, 0, 0, 0);
radius[0] = 0.1f;
}
if (point2 != null)
{
pos2 = new Vector4(point2.transform.position.x, point2.transform.position.y, point2.transform.position.z, point2.windMain * 0.2777f);
radius[1] = point2.radius;
}
else
{
pos2 = new Vector4(0, 0, 0, 0);
radius[1] = 0.1f;
}
if (point3 != null)
{
pos3 = new Vector4(point3.transform.position.x, point3.transform.position.y, point3.transform.position.z, point3.windMain * 0.2777f);
radius[2] = point3.radius;
}
else
{
pos3 = new Vector4(0, 0, 0, 0);
radius[2] = 0.1f;
}
if (point4 != null)
{
pos4 = new Vector4(point4.transform.position.x, point4.transform.position.y, point4.transform.position.z, point4.windMain * 0.2777f);
radius[3] = point4.radius;
}
else
{
pos4 = new Vector4(0, 0, 0, 0);
radius[3] = 0.1f;
}
Shader.SetGlobalMatrix("WIND_SETTINGS_Points", new Matrix4x4(pos1, pos2, pos3, pos4));
Shader.SetGlobalVector("WIND_SETTINGS_Points_Radius", radius);
}
Vector4 GetDirectionAndSpeed()
{
Vector3 dir = transform.forward.normalized;
return new Vector4(dir.x, dir.y, dir.z, windSpeed * 0.2777f);
}
}
}