Import 2D Level

This commit is contained in:
2026-04-30 00:53:30 +02:00
parent c67979c7cf
commit 5797038baf
479 changed files with 430785 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
using Platformer.Mechanics;
using UnityEngine;
namespace Platformer.Model
{
/// <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 PlatformerModel
{
/// <summary>
/// The virtual camera in the scene.
/// </summary>
public Unity.Cinemachine.CinemachineCamera virtualCamera;
/// <summary>
/// The main component which controls the player sprite, controlled
/// by the user.
/// </summary>
public PlayerController player;
/// <summary>
/// The spawn point in the scene.
/// </summary>
public Transform spawnPoint;
/// <summary>
/// A global jump modifier applied to all initial jump velocities.
/// </summary>
public float jumpModifier = 1.5f;
/// <summary>
/// A global jump modifier applied to slow down an active jump when
/// the user releases the jump input.
/// </summary>
public float jumpDeceleration = 0.5f;
}
}