Skip to content

Commit

Permalink
Add CloudX.Shared to enum assemblies. Fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Jun 30, 2022
1 parent a4910e9 commit bd422d6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion LogixVisualCustomizer/LogixVisualCustomizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Reflection;
using System.Text;
using BaseX;
using CloudX.Shared;
using CodeX;
using FrooxEngine;
using FrooxEngine.LogiX;
Expand Down Expand Up @@ -97,7 +98,7 @@ public class LogixVisualCustomizer : NeosMod
public override string Author => "Banane9";
public override string Link => "https://github.com/Banane9/NeosLogixVisualCustomizer";
public override string Name => "LogixVisualCustomizer";
public override string Version => "1.0.0";
public override string Version => "1.0.1";
internal static float4 BackgroundHorizontalSlices => UseBackground ? Config.GetValue(BackgroundHorizontalSlicesKey) : defaultSlices;
internal static Uri BackgroundSpriteUri => UseBackground ? Config.GetValue(BackgroundSpriteUriKey) : null;
internal static float4 BackgroundVerticalSlices => UseBackground ? Config.GetValue(BackgroundVerticalSlicesKey) : defaultSlices;
Expand Down Expand Up @@ -153,6 +154,7 @@ static LogixVisualCustomizer()

NeosEnumTypes = AccessTools.GetTypesFromAssembly(typeof(EnumInput<>).Assembly)
.Concat(AccessTools.GetTypesFromAssembly(typeof(float4).Assembly))
.Concat(AccessTools.GetTypesFromAssembly(typeof(SessionAccessLevel).Assembly))
.Where(type => type.IsEnum && !type.IsNested)
.ToArray();

Expand Down
3 changes: 3 additions & 0 deletions LogixVisualCustomizer/LogixVisualCustomizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\NeosVR\Neos_Data\Managed\BaseX.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="CloudX.Shared">
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\NeosVR\Neos_Data\Managed\CloudX.Shared.dll</HintPath>
</Reference>
<Reference Include="CodeX">
<HintPath>C:\Program Files (x86)\Steam\steamapps\common\NeosVR\Neos_Data\Managed\CodeX.dll</HintPath>
<Private>False</Private>
Expand Down
4 changes: 2 additions & 2 deletions LogixVisualCustomizer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]

0 comments on commit bd422d6

Please sign in to comment.