-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGameObjectImageFill.cs
More file actions
79 lines (56 loc) · 1.99 KB
/
GameObjectImageFill.cs
File metadata and controls
79 lines (56 loc) · 1.99 KB
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
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using Engine.Events;
public class GameObjectImageFill : MonoBehaviour {
public GameObject containerFill;
static float t = 0.0f;
public float range = 1f;
float currentProgress = 0f;
public void OnEnable() {
Messenger.AddListener(LoadSceneMessages.LevelLoaded, OnLevelLoaded);
Messenger.AddListener(LoadSceneMessages.LevelLoadStarted, OnLevelLoadStarted);
Messenger<float>.AddListener(LoadSceneMessages.LevelLoadProgress, OnLevelLoadProgress);
}
public void OnDisable() {
Messenger.RemoveListener(LoadSceneMessages.LevelLoaded, OnLevelLoaded);
Messenger.RemoveListener(LoadSceneMessages.LevelLoadStarted, OnLevelLoadStarted);
Messenger<float>.RemoveListener(LoadSceneMessages.LevelLoadProgress, OnLevelLoadProgress);
}
void Start() {
if (containerFill == null) {
containerFill = gameObject;
}
}
public void Reset() {
t = 0;
currentProgress = 0;
UIUtil.SetSliderValue(containerFill, currentProgress);
}
void Update() {
if (containerFill == null) {
return;
}
UIUtil.SetSliderValue(containerFill, currentProgress);
if (UIUtil.GetSliderValue(containerFill) < 1f) {
t += 0.5f * Time.deltaTime;
currentProgress = Mathf.Lerp(0f, 1f, t);
}
/*
if (containerFill.transform.localPosition.y <= range / 4) {
currentProgress = Mathf.Lerp(0f, 1f, t);
containerFill.transform.localPosition = containerFill.transform.localPosition.WithY(range * (1 - currentProgress));
t += 0.5f * Time.deltaTime;
}
*/
}
public void OnLevelLoadProgress(float progress) {
Debug.Log("Loading Progress:" + progress);
t = progress / 10f;
}
public void OnLevelLoadStarted() {
}
public void OnLevelLoaded() {
}
}