Skip to content

Commit d3b4796

Browse files
author
FluffyFishGames
committed
Updated pattern exchange connection for new server
1 parent 498aa02 commit d3b4796

File tree

8 files changed

+2995
-2922
lines changed

8 files changed

+2995
-2922
lines changed

Assembly-CSharp-firstpass.csproj

Lines changed: 1011 additions & 983 deletions
Large diffs are not rendered by default.

Assembly-CSharp.csproj

Lines changed: 745 additions & 726 deletions
Large diffs are not rendered by default.

Assets/Scripts/Controller.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System.Collections;
22
using System.Collections.Generic;
3+
using System.Net;
34
using System.Threading;
45
using UnityEngine;
56

@@ -487,7 +488,10 @@ IEnumerator ConnectToServer()
487488
{
488489
CurrentState = State.None;
489490
//CurrentClient = new DesignServer.Client(new System.Net.IPEndPoint(System.Net.IPAddress.Parse("127.0.0.1"), 9801));
490-
CurrentClient = new DesignServer.Client(new System.Net.IPEndPoint(System.Net.IPAddress.Parse("157.90.0.143"), 9801));
491+
var ipAddresses = Dns.GetHostAddresses("designs.potatoepet.de");
492+
if (ipAddresses.Length == 0)
493+
throw new System.Exception("Couldn't resolve designs.potatoepet.de");
494+
CurrentClient = new DesignServer.Client(new System.Net.IPEndPoint(ipAddresses[0], 9801));
491495
int i = 1;
492496
float time = 0f;
493497
OnlineTransitionAnimator.SetTrigger("PlayTransitionIn");

Coffee.SoftMaskForUGUI.Editor.csproj

Lines changed: 617 additions & 608 deletions
Large diffs are not rendered by default.

Coffee.SoftMaskForUGUI.csproj

Lines changed: 607 additions & 598 deletions
Large diffs are not rendered by default.

Packages/manifest.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
"com.unity.2d.sprite": "1.0.0",
44
"com.unity.ext.nunit": "1.0.6",
55
"com.unity.ide.rider": "1.2.1",
6-
"com.unity.ide.visualstudio": "2.0.14",
7-
"com.unity.ide.vscode": "1.2.4",
8-
"com.unity.test-framework": "1.1.30",
6+
"com.unity.ide.visualstudio": "2.0.15",
7+
"com.unity.ide.vscode": "1.2.5",
8+
"com.unity.test-framework": "1.1.31",
99
"com.unity.textmeshpro": "2.1.4",
1010
"com.unity.timeline": "1.2.18",
11+
"com.unity.toolchain.win-x86_64-linux-x86_64": "2.0.10",
1112
"com.unity.ugui": "1.0.0",
1213
"com.unity.modules.ai": "1.0.0",
1314
"com.unity.modules.androidjni": "1.0.0",

ProjectSettings/ProjectSettings.asset

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ PlayerSettings:
130130
16:10: 0
131131
16:9: 1
132132
Others: 0
133-
bundleVersion: 0.9.5p16
133+
bundleVersion: 0.9.6
134134
preloadedAssets: []
135135
metroInputSource: 0
136136
wsaTransparentSwapchain: 0
@@ -510,7 +510,9 @@ PlayerSettings:
510510
switchNetworkInterfaceManagerInitializeEnabled: 1
511511
switchPlayerConnectionEnabled: 1
512512
switchUseMicroSleepForYield: 1
513+
switchEnableRamDiskSupport: 0
513514
switchMicroSleepForYieldTime: 25
515+
switchRamDiskSpaceSize: 12
514516
ps4NPAgeRating: 12
515517
ps4NPTitleSecret:
516518
ps4NPTrophyPackPath:
@@ -605,6 +607,7 @@ PlayerSettings:
605607
ps5UseAudio3dBackend: 0
606608
ps5ScriptOptimizationLevel: 2
607609
ps5Audio3dVirtualSpeakerCount: 14
610+
ps5VrrSupport: 0
608611
ps5UpdateReferencePackage:
609612
ps5disableAutoHideSplash: 0
610613
ps5OperatingSystemCanDisableSplashScreen: 0

ProjectSettings/ProjectVersion.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2019.4.36f1
2-
m_EditorVersionWithRevision: 2019.4.36f1 (660c164b2fc5)
1+
m_EditorVersion: 2019.4.40f1
2+
m_EditorVersionWithRevision: 2019.4.40f1 (ffc62b691db5)

0 commit comments

Comments
 (0)