Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/ConfigWeather.cs
2025-08-13 09:26:42 +08:00

29 lines
584 B
C#

using FullInspector;
using MoleMole.Config;
namespace MoleMole
{
public class ConfigWeather : BaseScriptableObject
{
public string renderingDataPath;
public string rainPath;
[InspectorNullable]
public ConfigStageEffectSetting stageEffectSetting;
public static ConfigWeather CreateDefault()
{
ConfigWeather configWeather = new ConfigWeather();
configWeather.rainPath = "Weather/Rain/Default";
return configWeather;
}
public void CopyFrom(ConfigWeather source)
{
renderingDataPath = source.renderingDataPath;
rainPath = source.rainPath;
}
}
}