Liberi
An exergame built for kids with CP!
LaunchScreen.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Diagnostics;
6 using System.IO;
7 using System.Linq;
8 
12 public class LaunchScreen : MonoBehaviour
13 {
17  public static bool UpToDate = false;
18 
22  public int Width;
26  public int Height;
27 
28  void Start ()
29  {
30  Screen.SetResolution(Width, Height, false);
31  Screen.showCursor = true;
32  }
33 
34  void Update ()
35  {
37  {
39  }
40  }
41 
42  void OnDestroy ()
43  {
44  if (GameClient.Instance != null)
45  {
46  Screen.SetResolution(
47  GameClient.Instance.Config.Video.Width,
48  GameClient.Instance.Config.Video.Height,
49  GameClient.Instance.Config.Video.FullScreen);
50 
51  Screen.showCursor = true;
52  }
53  }
54 }
static bool IsVisible
Gets whether or not the overlay is currently visible.
Game client launch screen.
Definition: LaunchScreen.cs:12
int Height
The height of the launch screen.
Definition: LaunchScreen.cs:26
An overlay for displaying game status on the game client.
void ConnectToWorldServer()
Connect to the world server specified in the network configuration.
Definition: GameClient.cs:512
int Width
The width of the launch screen.
Definition: LaunchScreen.cs:22
static bool UpToDate
Whether or not the game is up to date.
Definition: LaunchScreen.cs:17
ClientConfig Config
Gets the configuration for this client.
Definition: GameClient.cs:176
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Main game client class.
Definition: GameClient.cs:16