You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+43-6Lines changed: 43 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,49 @@ Unity Core is a set of highly useful, generic tools built for the Unity 3D game
4
4
5
5
There are 5 categories of tooling in this package:
6
6
7
-
1. Menu Management
8
-
2. Audio Management
9
-
3. Scene Management
10
-
4. Data Management
11
-
5. Session Management
7
+
1. Menu Management
8
+
2. Audio Management
9
+
3. Scene Management
10
+
4. Data Management
11
+
5. Session Management
12
+
6. Tween (Bonus Content)
12
13
13
14
### Menu Management
14
15
15
-
Managing menus and other various UI elements is hugely important. At a high level, we want to create a system of switches for menu content, or various pages in our projects. To get more control, we may also want to create control structures for animation queueing.
16
+
Managing menus and other various UI elements is hugely important. At a high level, we want to create a system of switches for menu content, or various pages in our projects. To get more control, we may also want to create control structures for animation queueing.
17
+
18
+
Watch the tutorial: https://youtu.be/qkKuGmGRF2k
19
+
20
+
### Data Management
21
+
22
+
This implementation of data management is very basic. We simply take advantage of Unity's PlayerPrefs tool to abstract local data with simple class properties.
23
+
24
+
Watch the tutorial: https://youtu.be/Vhuf1e0PVH0
25
+
26
+
### Audio Management
27
+
28
+
Audio management can get complex, but our implementation here is highly streamlined. This audio package is capable of managing multiple audio tracks, each with their own set of audio type playables.
29
+
30
+
Watch the tutorial: https://youtu.be/3hsBFxrIgQI
31
+
32
+
### Scene Management
33
+
34
+
The scene tools in this package will let you easily switch scenes and subscribe to scene load events. The user can optionally choose to integrate the menu management system by passing a loading page PageType into the load method.
35
+
36
+
Watch the tutorial: https://youtu.be/4oTluGCOgOM
37
+
38
+
### Session Management
39
+
40
+
Sessions are definitely the more abstract system in the bunch. Without an application to manage, it is difficult to foresee what goes in the session controller. However, in this package you'll see a couple of examples of what you may want to store during the session. Here, we store sessionStartTime, fps, and manage the core game loop.
41
+
42
+
Watch the tutorial: https://youtu.be/M6xy272-axM
43
+
44
+
### Tween (Bonus)
45
+
46
+
This package is bonus content for this repo. There are some easy scripts to get started with the following tween styles:
0 commit comments