Cozy Wather + buld systeme

This commit is contained in:
2026-07-07 16:43:51 +02:00
parent 031ac42e5d
commit 6b26ae3376
2140 changed files with 3482825 additions and 2252 deletions
@@ -0,0 +1,30 @@
// Distant Lands 2025
// COZY: Stylized Weather 3
// All code included in this file is protected under the Unity Asset Store Eula
namespace DistantLands.Cozy
{
public abstract class CozyDateOverride : CozyModule
{
public float yearPercentage;
/// <summary>
/// Returns the current year percentage (0 - 1).
/// </summary>
public abstract float GetCurrentYearPercentage();
/// <summary>
/// Returns the current year percentage (0 - 1) after a number of ticks has passed.
/// </summary>
public abstract float GetCurrentYearPercentage(float inTicks);
/// <summary>
/// Gets the current day plus the current day percentage (0-1).
/// </summary>
public abstract float DayAndTime();
public abstract void ChangeDay(int days);
public abstract int DaysPerYear();
}
}