Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,6 @@ crashlytics-build.properties
# For EOS Update
Tools/EOSUpdate.zip
Tools/EOSUpdateExtracted
Tools/OldSDKFiles
Tools/UnusedSDKUpdateFiles

78 changes: 59 additions & 19 deletions README.md

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions Runtime/CoreLayer/EOSCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.Runtime.InteropServices;
using System;
using System.IO;
using Epic.OnlineServices.Auth;

namespace RobProductions.OpenEOS
{
Expand All @@ -23,7 +22,7 @@ public static class EOSCore
public enum InstallationPathType
{
GitRemotePackage = 0,
LocalPackge = 1,
LocalPackage = 1,
CustomPath = 2
}

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

var finalPathToOpenEOS = customPathToOpenEOS;

if (openEOSPathType == InstallationPathType.LocalPackge)
if (openEOSPathType == InstallationPathType.LocalPackage)
{
//This should be a constant path in Packages
finalPathToOpenEOS = Path.Combine("Packages", eosPackageName);
Expand Down Expand Up @@ -289,7 +288,7 @@ public static bool Shutdown(PlatformInterface platformSession)
private static void LoadEditorLibraries(string libraryPathPrefix)
{
#if UNITY_EDITOR
var libraryPath = libraryPathPrefix + Config.LibraryName;
var libraryPath = libraryPathPrefix + Common.LIBRARY_NAME;

m_LibraryPointer = LoadLibrary(libraryPath);
if (m_LibraryPointer == IntPtr.Zero)
Expand Down
2 changes: 1 addition & 1 deletion Runtime/EOSSDK/SDK.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Runtime/EOSSDK/SDK/Plugins.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Runtime/EOSSDK/SDK/Plugins/EOSSDK-Win32-Shipping.dll
Binary file not shown.
29 changes: 5 additions & 24 deletions Runtime/EOSSDK/SDK/Plugins/EOSSDK-Win32-Shipping.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading