Skip to content

Commit

Permalink
- added spacing/coloring for class names under experience bar
Browse files Browse the repository at this point in the history
- positioning for bars on higher/wider resolutions should be better
  • Loading branch information
mfoltz committed Nov 7, 2024
1 parent f4e60d4 commit 5183f95
Show file tree
Hide file tree
Showing 7 changed files with 561 additions and 16 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
`1.1.1`
- class text under experience bar formatted more aesthetically
- improved positioning for UI elements at various resolutions (probably >_>)

`1.0.0`
- versioning for Thunderstore/sanity
- requires Bloodcraft 1.4.0
Expand Down
1 change: 1 addition & 0 deletions Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public static void Initialize(GameDataManager __instance)

Client = __instance.World;
PrefabCollectionSystem = Client.GetExistingSystemManaged<PrefabCollectionSystem>();


/*
foreach (var kvp in Client.m_SystemLookup)
Expand Down
3 changes: 1 addition & 2 deletions Eclipse.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>Eclipse</AssemblyName>
<Version>1.0.0</Version>
<Version>1.1.1</Version>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<RestoreSources>
https://api.nuget.org/v3/index.json;
Expand Down Expand Up @@ -32,7 +32,6 @@
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.668" />
<PackageReference Include="HarmonyX" Version="2.10.1" />
<PackageReference Include="VRising.Unhollowed.Client" Version="1.0.2.794360001" />
<PackageReference Include="VRising.VampireCommandFramework" Version="0.9.0" />
</ItemGroup>
<Target Name="BuildToClient" AfterTargets="Build">
<Copy SourceFiles="$(TargetDir)$(ProjectName).dll" DestinationFolder="C:\Program Files (x86)\Steam\steamapps\common\VRising\BepInEx\plugins" />
Expand Down
1 change: 0 additions & 1 deletion Patches/ClientChatSystemPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ static void HandleServerMessage(string message)
case (int)NetworkEventSubType.ConfigsToClient:
List<string> configData = DataService.ParseMessageString(regexExtract.Replace(message, ""));
DataService.ParseConfigData(configData);
//if (!CanvasService.Active) Core.StartCoroutine(CanvasService.CanvasUpdateLoop());
break;
}
}
Expand Down
1 change: 0 additions & 1 deletion Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ internal class Plugin : BasePlugin
{
Harmony _harmony;
internal static Plugin Instance { get; private set; }
public static Harmony Harmony => Instance._harmony;
public static ManualLogSource LogInstance => Instance.Log;

public static readonly List<string> DirectoryPaths =
Expand Down
565 changes: 554 additions & 11 deletions Services/CanvasService.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion thunderstore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ v-rising = ["1-0-update", "mods", "client"]
[package]
namespace = "zfolmt"
name = "Eclipse"
versionNumber = "1.0.0"
versionNumber = "1.1.1"
description = "Client companion mod for Bloodcraft!"
websiteUrl = "https://github.com/mfoltz/Eclipse"
containsNsfwContent = false

0 comments on commit 5183f95

Please sign in to comment.