22 lines
316 B
C#
22 lines
316 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[Serializable]
|
||
|
public class WeatherEffect
|
||
|
{
|
||
|
public string name;
|
||
|
|
||
|
public GameObject effectObject;
|
||
|
|
||
|
public GameObject effectPermanentObject;
|
||
|
|
||
|
public bool lerpPosition;
|
||
|
|
||
|
public bool effectEnabled;
|
||
|
|
||
|
public string sunAnimatorBool;
|
||
|
|
||
|
[HideInInspector]
|
||
|
public bool transitioning;
|
||
|
}
|