コード例 #1
0
	private UIController uiController = null; //!< The local reference to the UIController
	#endregion

	#region Unity methods /// @name Unity methods
	/**
	 * Called when the script is loaded, before the game starts
	 */
	void Awake () {
		S = this;

		// Get the controllers
		gameController = GameController.S;
		playerController = PlayerController.S;
		tvUIController = TVUIController.S;
	}
コード例 #2
0
	private LobbyController lobbyController = null; //!< The local reference to the lobby controller
	#endregion

	#region Unity methods /// @name Unity methods
	/**
	 * Called when the script is loaded, before the game starts
	 */
	void Awake () {
		S = this;

		// Initialize the array
		canvases = new Dictionary<string, GameObject> ();

		// Loop through the panels
		foreach (GameObject panel in panels) {
			// Add to the hash array
			canvases.Add (panel.name, panel);
		}
	}