You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
371 B
17 lines
371 B
using UnityEngine;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
|
|
public class GameSettings : ScriptableObject {
|
|
|
|
[Header ("Application Settings")]
|
|
public float timeScale = 1f;
|
|
public int framerate = 60;
|
|
public bool showFPSCounter = false;
|
|
|
|
[Header ("Audio Settings")]
|
|
public float MusicVolume = .7f;
|
|
public float SFXVolume = .9f;
|
|
|
|
}
|