-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomSettingsExample.settings
65 lines (64 loc) · 1.42 KB
/
CustomSettingsExample.settings
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
{
"configs": [
{
"category": "Game",
"path" : "Game/TestCategory",
"variables": [
{
"name": "g_myBool",
"value": "0",
"description": "My bool variable",
"type": "Bool",
"requestRestart" : true
},
{
"name": "g_myInt",
"value": "1",
"description": "My int variable",
"type": "Int",
"requestRestart" : false
},
{
"name": "g_myFloat",
"value": "0.5",
"description": "My float variable",
"type": "Float",
"requestRestart" : false
},
{
"name": "g_myString",
"value": "Hey, crycommunity!",
"description": "My string variable",
"type": "String",
"requestRestart" : false
},
{
"name": "g_myEnum",
"value": "0",
"description": "My enum variable",
"type": "Enum",
"enumDescription": [
{
"key": "0",
"description": "My enum 0"
},
{
"key": "1",
"description": "My enum 1"
},
{
"key": "2",
"description": "My enum 2"
}
,
{
"key": "3",
"description": "My awesome enum"
}
],
"requestRestart" : false
}
]
}
]
}