-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathHelp.txt
More file actions
32 lines (27 loc) · 958 Bytes
/
Help.txt
File metadata and controls
32 lines (27 loc) · 958 Bytes
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
###########################################################
###########################################################
## This File Contains Useful ##
## Informations on Software Inc. ##
###########################################################
###########################################################
Icons:
Wires
Pause
Grid
Clock
Server
Info
Cogs
Template for Buttons:
//Button for XY
var button = WindowManager.SpawnButton();
button.GetComponentInChildren<UnityEngine.UI.Text>().text = "ButtonText";
button.onClick.AddListener(() => {
behavior.EmployeesToMax();
});
WindowManager.AddElementToElement(button.gameObject, parent.gameObject, new Rect(0, 128, 250, 32),
new Rect(0, 0, 0, 0));
Template for Messages:
HUD.Instance.AddPopupMessage("XY has been activated!", "Cogs", "", 0, 1);
Template for thoughts:
actor.employee.AddThought("I am like the guy who made this Mod! A Genius!", 1);