Discord rich presence

This commit is contained in:
Braedon
2022-01-30 18:40:12 -05:00
parent 788e2bb612
commit dd9203cace
50 changed files with 6042 additions and 16 deletions

View File

@ -18,19 +18,16 @@ namespace RhythmHeavenMania
private List<GameObject> preloadedGames = new List<GameObject>();
public List<GameObject> SoundObjects = new List<GameObject>();
[Header("Components")]
public TextAsset txt;
public Camera GameCamera, CursorCam;
public CircleCursor CircleCursor;
[HideInInspector] public GameObject GamesHolder;
[Header("Games")]
public string currentGame;
Coroutine currentGameSwitchIE;
[Header("Properties")]
public int currentEvent, currentTempoEvent;
public float startOffset;
@ -38,6 +35,10 @@ namespace RhythmHeavenMania
public float startBeat;
private GameObject currentGameO;
public bool autoplay;
public int BeatmapEntities()
{
return Beatmap.entities.Count + Beatmap.tempoChanges.Count;
}
public static GameManager instance { get; private set; }
private EventCaller eventCaller;