Pink/Assets/Scripts/Environment/EnvironmentModel.cs
2020-10-01 18:11:43 +01:00

36 lines
1023 B
C#

using UnityEngine;
using TMPro;
namespace Pink.Environment
{
/// <summary>
/// The main model containing needed data to implement a platformer style
/// game. This class should only contain data, and methods that operate
/// on the data. It is initialised with data in the GameController class.
/// </summary>
[System.Serializable]
public class EnvironmentModel
{
/// <summary>
/// The virtual camera in the scene.
/// </summary>
public Cinemachine.CinemachineVirtualCamera virtualCamera;
/// <summary>
/// The main component which controls the player sprite, controlled
/// by the user.
/// </summary>
public Pink.Mechanics.PinkController player;
/// <summary>
/// The spawn point in the scene.
/// </summary>
public Transform spawnPoint;
/// <summary>
/// Health display UI element
/// </summary>
public TextMeshProUGUI healthDisplay;
}
}