diff --git a/VoidBox/Assets/BuiltinEnvs.json b/VoidBox/Assets/BuiltinEnvs.json index 0501641..c5913a0 100644 --- a/VoidBox/Assets/BuiltinEnvs.json +++ b/VoidBox/Assets/BuiltinEnvs.json @@ -395,7 +395,7 @@ { "$type": "VoidBox.SavedEnv, VoidBox", "Id": "d30f1b8d-2076-41f7-b53c-4d1145456c52", - "Name": "Opinionated", + "Name": "Opinionated 1", "Env": { "$type": "System.Nullable`1[[Ktisis.Structs.Env.EnvState, VoidBox]], System.Private.CoreLib", "SkyId": 1, @@ -522,5 +522,136 @@ "Speed": 0.0 } } + }, + { + "$type": "VoidBox.SavedEnv, VoidBox", + "Id": "4e4e2dbc-6bda-4b33-95f1-0865d939498a", + "Name": "Opinionated 2", + "Env": { + "$type": "System.Nullable`1[[Ktisis.Structs.Env.EnvState, VoidBox]], System.Private.CoreLib", + "SkyId": 1, + "Lighting": { + "$type": "Ktisis.Structs.Env.Weather.EnvLighting, VoidBox", + "SunLightColor": { + "$type": "System.Numerics.Vector3, System.Private.CoreLib", + "X": 0.86194694, + "Y": 0.69091094, + "Z": 0.68265486 + }, + "MoonLightColor": { + "$type": "System.Numerics.Vector3, System.Private.CoreLib", + "X": 0.2848343, + "Y": 0.36279023, + "Z": 0.7 + }, + "Ambient": { + "$type": "System.Numerics.Vector3, System.Private.CoreLib", + "X": 0.5, + "Y": 0.45294118, + "Z": 0.4 + }, + "_unk1": 0.5, + "AmbientSaturation": 1.0, + "Temperature": 1.0, + "_unk2": 3.774338, + "_unk3": 75.0, + "_unk4": 0.75 + }, + "Stars": { + "$type": "Ktisis.Structs.Env.Weather.EnvStars, VoidBox", + "ConstellationIntensity": 0.88, + "Constellations": 3.162, + "Stars": 14.305, + "GalaxyIntensity": 5.314, + "StarIntensity": 0.308, + "MoonColor": { + "$type": "System.Numerics.Vector4, System.Private.CoreLib", + "X": 1.0, + "Y": 1.0, + "Z": 1.0, + "W": 1.0 + }, + "MoonBrightness": 0.41 + }, + "Fog": { + "$type": "Ktisis.Structs.Env.Weather.EnvFog, VoidBox", + "Color": { + "$type": "System.Numerics.Vector4, System.Private.CoreLib", + "X": 0.44186044, + "Y": 0.44186044, + "Z": 0.44186044, + "W": 1.0 + }, + "Distance": 50.0, + "Thickness": 5.0, + "_unk1": 1000.0, + "_unk2": 1.0, + "Opacity": 0.11, + "SkyVisibility": 0.133 + }, + "Clouds": { + "$type": "Ktisis.Structs.Env.Weather.EnvClouds, VoidBox", + "CloudColor": { + "$type": "System.Numerics.Vector3, System.Private.CoreLib", + "X": 0.4976744, + "Y": 0.4976744, + "Z": 0.4976744 + }, + "Color2": { + "$type": "System.Numerics.Vector3, System.Private.CoreLib", + "X": 0.82790697, + "Y": 0.82790697, + "Z": 0.82790697 + }, + "Gradient": 1.286, + "SideHeight": 0.956, + "CloudTexture": 1, + "CloudSideTexture": 48 + }, + "Rain": { + "$type": "Ktisis.Structs.Env.Weather.EnvRain, VoidBox", + "Raindrops": 0.0, + "Intensity": 0.0, + "Weight": 0.0, + "Scatter": 0.0, + "_unk1": 0.0, + "Size": 1.0, + "Color": { + "$type": "System.Numerics.Vector4, System.Private.CoreLib", + "X": 0.0, + "Y": 0.0, + "Z": 0.0, + "W": 0.0 + }, + "_unk2": 0.0, + "_unk3": 0.0, + "_unk4": 0 + }, + "Dust": { + "$type": "Ktisis.Structs.Env.Weather.EnvDust, VoidBox", + "_unk1": 0.0, + "Intensity": 0.0, + "Weight": 0.0, + "Spread": 0.0, + "Speed": 0.0, + "Size": 1.0, + "Color": { + "$type": "System.Numerics.Vector4, System.Private.CoreLib", + "X": 0.0, + "Y": 0.0, + "Z": 0.0, + "W": 0.0 + }, + "Glow": 0.0, + "Spin": 0.0, + "TextureId": 0 + }, + "Wind": { + "$type": "Ktisis.Structs.Env.Weather.EnvWind, VoidBox", + "Direction": 0.0, + "Angle": 0.0, + "Speed": 0.0 + } + } } ] \ No newline at end of file diff --git a/VoidBox/Configuration.cs b/VoidBox/Configuration.cs index acb82e5..781d4e3 100644 --- a/VoidBox/Configuration.cs +++ b/VoidBox/Configuration.cs @@ -24,7 +24,7 @@ public class Configuration : IPluginConfiguration private SavedEnv? _loginEnv; [JsonProperty] - private Guid _housingGuid; + private Guid _housingGuid = new("4e4e2dbc-6bda-4b33-95f1-0865d939498a"); [NonSerialized] private SavedEnv? _housingEnv;