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.
23 lines
684 B
23 lines
684 B
1 year ago
|
using System;
|
||
|
|
||
|
namespace UnityEngine.AzureSky
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class AzureEditorSettings
|
||
|
{
|
||
|
//Sky Controller Inspector.
|
||
|
public bool showTimeOfDayTab = true;
|
||
|
public bool showReferencesTab = false;
|
||
|
public bool showClimateTab = false;
|
||
|
public bool showOptionsTab = false;
|
||
|
public bool showOutputTab = false;
|
||
|
|
||
|
//Profile Inspector.
|
||
|
public bool showScatteringTab = false;
|
||
|
public bool showDeepSpaceTab = false;
|
||
|
public bool showFogScatteringTab = false;
|
||
|
public bool showCloudsTab = false;
|
||
|
public bool showLightingTab = false;
|
||
|
public bool showWeatherTab = false;
|
||
|
}
|
||
|
}
|