TheKingsRace/Assets/Scripts/Environment/WindDirection.cs
Julia Butenhoff 60e3213d41 Fixed Weather Wheel Bugs
- Weather now applies to respawned players
- Weather now doesn't disable movement on respawned players
- Weather Wheel can't be spammed
2022-03-14 19:21:04 -05:00

13 lines
241 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WindDirection : MonoBehaviour
{
public Vector3 windDireciton;
private void Start() {
windDireciton = new Vector3(0, 0, 0);
}
}