Skip to content

Commit

Permalink
upgrade to 2019.3 - issue with substance animation uncovered. skybox …
Browse files Browse the repository at this point in the history
…broken as well
  • Loading branch information
mimetaur committed May 3, 2020
1 parent dfb7c4d commit 18f969d
Show file tree
Hide file tree
Showing 1,568 changed files with 78,012 additions and 41,146 deletions.
8 changes: 8 additions & 0 deletions Assets/Allegorithmic.meta

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

8 changes: 8 additions & 0 deletions Assets/Allegorithmic/Plugins.meta

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

1 change: 1 addition & 0 deletions Assets/Allegorithmic/Plugins/EULA.txt

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Assets/Allegorithmic/Plugins/EULA.txt.meta

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

8 changes: 8 additions & 0 deletions Assets/Allegorithmic/Plugins/Substance.EditorHelper.meta

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

58 changes: 58 additions & 0 deletions Assets/Allegorithmic/Plugins/Substance.EditorHelper/Scripter.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@

using System;
using UnityEditor;
using UnityEngine;
using System.Runtime.InteropServices;

using System.IO;
using System.Reflection;
using System.Collections.Generic;

namespace Substance.EditorHelper
{
public class Scripter
{
public static void Hello()
{
Debug.Log("Scripter's Hello");

#if UNITY_2019_3_OR_NEWER
Debug.Log("UNITY_2019_3_OR_NEWER");
#endif
}

// NOTE: The following functions will be re-assessed when adding URP context...

public static bool IsInstallingHDRP()
{
#if UNITY_2019_3_OR_NEWER
bool bInstalled = false;

UnityEngine.Rendering.RenderPipelineAsset asset;
asset = UnityEngine.Rendering.GraphicsSettings.renderPipelineAsset;

if ((asset != null) &&
(asset.GetType().ToString().EndsWith(".HDRenderPipelineAsset")))
{
bInstalled = true;
}

return bInstalled;
#else
return false;
#endif
}

public static bool IsHDRP()
{
bool bHDRP = false;

#if UNITY_2019_3_OR_NEWER
if (IsInstallingHDRP())
bHDRP = true;
#endif

return bHDRP;
}
}
}

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"name": "Substance.EditorHelper"
}

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

33 changes: 33 additions & 0 deletions Assets/Allegorithmic/Plugins/Substance.Engine.bundle.meta

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

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>17G65</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>Substance.Engine</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleLongVersionString</key>
<string></string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string></string>
<key>CSResourcesFileMapped</key>
<true/>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>10A255</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>18A384</string>
<key>DTSDKName</key>
<string>macosx10.14</string>
<key>DTXcode</key>
<string>1000</string>
<key>DTXcodeBuild</key>
<string>10A255</string>
<key>NSHumanReadableCopyright</key>
<string></string>
</dict>
</plist>

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

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

Binary file not shown.

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

3 changes: 3 additions & 0 deletions Assets/Allegorithmic/Plugins/Substance.Engine.dll
Git LFS file not shown
27 changes: 27 additions & 0 deletions Assets/Allegorithmic/Plugins/Substance.Engine.dll.meta

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

3 changes: 3 additions & 0 deletions Assets/Allegorithmic/Plugins/Substance.Game.dll
Git LFS file not shown
33 changes: 33 additions & 0 deletions Assets/Allegorithmic/Plugins/Substance.Game.dll.meta

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

8 changes: 8 additions & 0 deletions Assets/Allegorithmic/Plugins/Substance.Platform.meta

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

Loading

0 comments on commit 18f969d

Please sign in to comment.