-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStreamSettings.cs
More file actions
59 lines (48 loc) · 1.52 KB
/
Copy pathStreamSettings.cs
File metadata and controls
59 lines (48 loc) · 1.52 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
using NGO;
using ngov3;
using System.Collections.Generic;
namespace CustomStreamMaker
{
public enum StreamBackground
{
Default, Silver, Gold, MileOne, MileTwo, MileThree, MileFour, MileFive, Guru, Horror, BigHouse, Roof, Black, Void, None = 1000
}
public enum StreamChatSettings
{
Normal,
Celebration,
Uncontrollable
}
public enum ChatCommentType
{
Normal, Stressful, Super
}
public class StreamSettings
{
public string StringTitle;
public StreamChatSettings ChatSettings;
public string StartingAnimation;
public CustomAsset CustomStartingAnimation;
public StreamBackground StartingBackground;
public CustomAsset CustomBackground;
public SoundType StartingMusic;
public EffectType StartingEffect;
public float EffectIntensity;
public string ReactionAnimation;
public bool IsIntroPlaying = true;
public bool IsDarkAngelPlaying;
public bool HasCustomFollowerCount;
public int CustomFollowerCount = 0;
public bool HasCustomDay;
public int CustomDay = 15;
public bool HasCustomEndScreen;
public string CustomEndScreenPath;
public bool HasChair = true;
public bool IsInvertedColors;
public bool isBordersOff;
public bool hasEndScreen = true;
public List<PlayingObject> PlayingList = new();
public bool hasDarkInterface = false;
public StreamSettings() { }
}
}