mass commit of laziness

This commit is contained in:
NotAKidoS 2025-12-28 20:30:00 -06:00
parent ce992c70ee
commit 6d4fc549d9
167 changed files with 5471 additions and 675 deletions

View file

@ -244,7 +244,7 @@ public class PropLoadingHexagonMod : MelonMod
loadingObject = Object.Instantiate(loadingHexPrefab, Vector3.zero, Quaternion.identity, loadingHexContainer.transform);
loadingHexComponent = loadingObject.GetComponent<LoadingHexagonController>();
float avatarHeight = PlayerSetup.Instance._avatarHeight;
float avatarHeight = PlayerSetup.Instance.AvatarHeight;
Transform hexTransform = loadingObject.transform;
hexTransform.localScale = Vector3.one * avatarHeight / 4f; // scale modifier
hexTransform.GetChild(0).position = Vector3.up * avatarHeight / 2f; // position modifier

View file

@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RootNamespace>PropSpawnTweaks</RootNamespace>
<RootNamespace>PropLoadingHexagon</RootNamespace>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\loading_hexagon.assets">

View file

@ -17,7 +17,7 @@ using System.Reflection;
downloadLink: "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/PropLoadingHexagon"
)]
[assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")]
[assembly: MelonGame("ChilloutVR", "ChilloutVR")]
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: MelonColor(255, 246, 25, 99)] // red-pink
@ -27,6 +27,6 @@ using System.Reflection;
namespace NAK.PropLoadingHexagon.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.1";
public const string Version = "1.0.2";
public const string Author = "Exterrata & NotAKidoS";
}

View file

@ -1,9 +1,9 @@
{
"_id": 220,
"name": "PropLoadingHexagon",
"modversion": "1.0.1",
"gameversion": "2025r179",
"loaderversion": "0.6.1",
"modversion": "1.0.2",
"gameversion": "2025r181",
"loaderversion": "0.7.2",
"modtype": "Mod",
"author": "Exterrata & NotAKidoS",
"description": "Adds a hexagon indicator to downloading props. Indicator is styled to look similar to Portals.\n\nCan use Delete Mode on loading hexagons to cancel stuck downloads. Setting is provided to display the hexagon for Blocked/Filtered props.",
@ -16,8 +16,8 @@
"requirements": [
"None"
],
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r46/PropLoadingHexagon.dll",
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r48/PropLoadingHexagon.dll",
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/PropLoadingHexagon/",
"changelog": "- Fixes for 2025r179",
"changelog": "- Rebuilt for CVR 2025r181",
"embedcolor": "#f61963"
}