mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
29 lines
584 B
C#
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;
|
|
}
|
|
}
|
|
}
|