You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
849 B
18 lines
849 B
1 year ago
|
namespace UnityEngine.AzureSky
|
||
|
{
|
||
|
[CreateAssetMenu(fileName = "Day Profile", menuName = "Azure[Sky] Dynamic Skybox/New Day Profile", order = 1)]
|
||
|
public class AzureSkyProfile : ScriptableObject
|
||
|
{
|
||
|
#if UNITY_EDITOR
|
||
|
public AzureEditorSettings editorSettings;
|
||
|
#endif
|
||
|
|
||
|
//Components.
|
||
|
public AzureSkyScatteringComponent scattering = new AzureSkyScatteringComponent();
|
||
|
public AzureSkyDeepSpaceComponent deepSpace = new AzureSkyDeepSpaceComponent();
|
||
|
public AzureSkyFogScatteringComponent fogScattering = new AzureSkyFogScatteringComponent();
|
||
|
public AzureSkyCloudsComponent clouds = new AzureSkyCloudsComponent();
|
||
|
public AzureSkyLightingComponent lighting = new AzureSkyLightingComponent();
|
||
|
public AzureSkyWeatherComponent weather = new AzureSkyWeatherComponent();
|
||
|
}
|
||
|
}
|