-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathLevelManager.cs
executable file
·104 lines (89 loc) · 2.28 KB
/
LevelManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
using DG.Tweening;
using Matcha.Dreadful;
using UnityEngine;
using UnityEngine.Assertions;
using UnityEngine.SceneManagement;
public class LevelManager : BaseBehaviour
{
public float groundLine = 0f;
private float fadeInAfter = 0f;
private float timeToFadeIn = 2f;
private float fadeOutAfter = 1f;
private float timeToFadeOut = 2f;
private float playerPositionY;
private bool playerAboveGround;
private Transform player;
private SpriteRenderer spriteRenderer;
private Sequence fadeInViewport;
private Sequence fadeOutViewport;
void Awake()
{
spriteRenderer = GetComponent<SpriteRenderer>();
Assert.IsNotNull(spriteRenderer);
}
void Start()
{
player = GameObject.Find(PLAYER).GetComponent<Transform>();
Assert.IsNotNull(player);
(fadeInViewport = MFX.FadeInViewport(spriteRenderer, fadeInAfter, timeToFadeIn)).Pause();
(fadeOutViewport = MFX.FadeOutViewport(spriteRenderer, fadeOutAfter, timeToFadeOut)).Pause();
spriteRenderer.enabled = true;
FadeInNewLevel();
GetPlayerPosition();
}
void OnLoadLevel(int newLevel)
{
// load level async in the background, but don't activate.
var backgroundLoadedScene = SceneManager.LoadSceneAsync("Level" + newLevel);
backgroundLoadedScene.allowSceneActivation = false;
// fade camera to black.
fadeOutViewport.Restart();
// wait a few seconds, then kill all tweens and load new level.
StartCoroutine(Timer.Start((fadeOutAfter + timeToFadeOut), false, () =>
{
DOTween.KillAll();
backgroundLoadedScene.allowSceneActivation = true;
}));
}
void FadeInNewLevel()
{
fadeInViewport.Restart();
Invoke("ExplicitGarbageCollection", 1f);
EventKit.Broadcast("level loading", true);
}
void ExplicitGarbageCollection()
{
System.GC.Collect();
}
void GetPlayerPosition()
{
InvokeRepeating("CheckIfAboveGround", 0f, 1F);
}
void CheckIfAboveGround()
{
if (player.position.y > groundLine)
{
if (!playerAboveGround)
{
playerAboveGround = true;
EventKit.Broadcast("player above ground", true);
}
}
else
{
if (playerAboveGround)
{
playerAboveGround = false;
EventKit.Broadcast("player above ground", false);
}
}
}
void OnEnable()
{
EventKit.Subscribe<int>("load level", OnLoadLevel);
}
void OnDestroy()
{
EventKit.Unsubscribe<int>("load level", OnLoadLevel);
}
}