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,36 @@
#if LINK_NETCODE
using Unity.Netcode;
using UnityEngine;
namespace DistantLands.Cozy
{
public class NetcodeView : NetworkBehaviour
{
[HideInInspector]
public NetworkVariable<float> ticks = new NetworkVariable<float>();
[HideInInspector]
public NetworkVariable<int> day = new NetworkVariable<int>();
[HideInInspector]
public NetworkVariable<int> year = new NetworkVariable<int>();
[HideInInspector]
public NetworkVariable<int> ambience = new NetworkVariable<int>();
[HideInInspector]
public NetworkList<int> weatherCache;
[HideInInspector]
public NetworkList<float> weatherValues;
void Awake()
{
weatherCache = new NetworkList<int>();
weatherValues = new NetworkList<float>();
}
}
}
#endif