mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-22 01:34:22 -05:00
- Weather now applies to respawned players - Weather now doesn't disable movement on respawned players - Weather Wheel can't be spammed
13 lines
241 B
C#
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);
|
|
}
|
|
}
|