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: Client/scripts/__WarpConfig/__WarpConfig.gml
+9-8
Original file line number
Diff line number
Diff line change
@@ -41,12 +41,12 @@ SOCKET_TYPES = {
41
41
// Choose configs in GameMaker in the top-right corner
42
42
43
43
// Default (just mirrors debug)
44
-
#macro Default:IP "127.0.0.1"
45
-
#macro Default:PORT "1338"
46
-
#macro Default:WS_PORT "3001"
47
-
#macro Default:DUAL_INSTANCE true
44
+
#macro IP "127.0.0.1"
45
+
#macro PORT "1338"
46
+
#macro WS_PORT "3001"
47
+
#macro DUAL_INSTANCE true
48
48
// you can set this macro to >1 to test the game with 3+ instances running at once
49
-
#macro Default:DUAL_INSTANCE_COUNT 1
49
+
#macro DUAL_INSTANCE_COUNT 1
50
50
51
51
// Production
52
52
#macro Prod:IP "xxx.xxx.xxx.xxx"// insert your external server IP
@@ -67,11 +67,12 @@ SOCKET_TYPES = {
67
67
68
68
69
69
// warn about not setting the config (press the "target" icon in the top-right corner of IDE)
70
-
#macro CONFIGS_SET true
71
-
#macro Default:CONFIGS_SET false
70
+
#macro CONFIGS_SET false
71
+
#macro Dev:CONFIGS_SET true
72
+
#macro Prod:CONFIGS_SET true
72
73
if (!CONFIGS_SET) {
73
74
trace("")
74
-
trace("### Remember to set your config by pressing the 'target' icon in the top-right corner of IDE! (Dev = Development, Prod = Production) ###")
75
+
trace("!!! Please remember to set your config by pressing the 'target' icon in the top-right corner of IDE! (Dev = Development, Prod = Production) ###")
0 commit comments