Skip to content

Commit

Permalink
1.3.6
Browse files Browse the repository at this point in the history
Runtime components Build fix.
  • Loading branch information
soupday committed Jul 31, 2022
1 parent 15afa2a commit a5b3e92
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Editor/Pipeline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public enum MaterialQuality { None, Default, High, Baked }

public static class Pipeline
{
public const string VERSION = "1.3.5";
public const string VERSION = "1.3.6";

#if HDRP_10_5_0_OR_NEWER
// version
Expand Down
4 changes: 4 additions & 0 deletions Runtime/PhysicsSettingsStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@
using UnityEditor;
using System.IO;
using System.Linq;
#if UNITY_EDITOR
using PhysicsSettings = Reallusion.Import.WeightMapper.PhysicsSettings;
using ColliderSettings = Reallusion.Import.ColliderManager.ColliderSettings;
#endif

namespace Reallusion.Import
{
[System.Serializable]
public class PhysicsSettingsStore : ScriptableObject
{
#if UNITY_EDITOR
public ColliderSettings[] colliderSettings;
public List<PhysicsSettings> clothSettings;

Expand Down Expand Up @@ -250,5 +253,6 @@ private static bool TryGetSavedIndex(List<PhysicsSettings> savedClothSettings, P

return false;
}
#endif
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.soupday.cc3_unity_tools",
"version": "1.3.5",
"version": "1.3.6",
"displayName": "CC/iC Unity Tools 3D",
"description": "Unity importer for Character Creator 3 & 4 and iClone 7 and 8.",
"unity": "2019.4",
Expand Down

0 comments on commit a5b3e92

Please sign in to comment.