Removed weather effects booleans, now to disable weather effects, setting the value to 0 is the way

This commit is contained in:
2025-01-22 17:47:58 -06:00
parent 189fd39377
commit 020f2bd3c5
4 changed files with 34 additions and 21 deletions

View File

@ -46,8 +46,11 @@ export type AssetData = {
export type WorldSettings = {
date: Date
isRainEnabled: boolean
isFogEnabled: boolean
weatherState: WeatherState
}
export type WeatherState = {
rainPercentage: number
fogDensity: number
}