Repair scene

This commit is contained in:
Kotrba Filip
2020-02-02 08:35:15 +01:00
parent 3e48e0aea5
commit 042800be1f
6 changed files with 189 additions and 88 deletions

View File

@@ -4,12 +4,12 @@ using UnityEngine;
public class MusicManager : MonoBehaviour
{
public AudioSource musicSource = new AudioSource();
public AudioSource musicSource;
public AudioClip DayMusic;
public AudioClip NightMusic;
private bool night = false;
public GameObject Sun = new GameObject();
public GameObject Sun;
// Start is called before the first frame update
void Start()
{