Skip to content

Commit 03986da

Browse files
Merge pull request #23 from RobProductions/working-branch
Update to 3.0.0
2 parents b57ec6e + 9af21d4 commit 03986da

File tree

2,193 files changed

+36177
-53425
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,193 files changed

+36177
-53425
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,6 @@ crashlytics-build.properties
6262
# For EOS Update
6363
Tools/EOSUpdate.zip
6464
Tools/EOSUpdateExtracted
65+
Tools/OldSDKFiles
66+
Tools/UnusedSDKUpdateFiles
6567

README.md

Lines changed: 59 additions & 19 deletions
Large diffs are not rendered by default.

Runtime/CoreLayer/EOSCore.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
using System.Runtime.InteropServices;
77
using System;
88
using System.IO;
9-
using Epic.OnlineServices.Auth;
109

1110
namespace RobProductions.OpenEOS
1211
{
@@ -23,7 +22,7 @@ public static class EOSCore
2322
public enum InstallationPathType
2423
{
2524
GitRemotePackage = 0,
26-
LocalPackge = 1,
25+
LocalPackage = 1,
2726
CustomPath = 2
2827
}
2928

@@ -77,7 +76,7 @@ public static PlatformInterface Init(EOSInitSet initSet, InstallationPathType op
7776

7877
var finalPathToOpenEOS = customPathToOpenEOS;
7978

80-
if (openEOSPathType == InstallationPathType.LocalPackge)
79+
if (openEOSPathType == InstallationPathType.LocalPackage)
8180
{
8281
//This should be a constant path in Packages
8382
finalPathToOpenEOS = Path.Combine("Packages", eosPackageName);
@@ -289,7 +288,7 @@ public static bool Shutdown(PlatformInterface platformSession)
289288
private static void LoadEditorLibraries(string libraryPathPrefix)
290289
{
291290
#if UNITY_EDITOR
292-
var libraryPath = libraryPathPrefix + Config.LibraryName;
291+
var libraryPath = libraryPathPrefix + Common.LIBRARY_NAME;
293292

294293
m_LibraryPointer = LoadLibrary(libraryPath);
295294
if (m_LibraryPointer == IntPtr.Zero)

Runtime/EOSSDK/SDK.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Runtime/EOSSDK/SDK/Plugins.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
912 KB
Binary file not shown.

Runtime/EOSSDK/SDK/Plugins/EOSSDK-Win32-Shipping.dll.meta

Lines changed: 5 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)