feat: prefab loader

This commit is contained in:
2026-08-23 13:16:26 +02:00
parent 3ceaff0d4e
commit 8398bf5f12
2 changed files with 66 additions and 1 deletions
+57
View File
@@ -1,4 +1,5 @@
using System.IO;
using System.Linq;
using UnityEngine;
using UnityEngine.SceneManagement;
@@ -10,6 +11,9 @@ namespace IngameReveries
public class IngameReveries : ModBehaviour
{
private GameObject _ingameReveriesUI;
private AssetBundle _reveriesBundle;
private GameObject _reveriesPrefab;
private void Awake()
{
@@ -23,6 +27,8 @@ namespace IngameReveries
private void Start()
{
InitializeAssets();
SceneManager.sceneLoaded += (scene, mode) =>
{
// Check if UI already instantiated
@@ -58,5 +64,56 @@ namespace IngameReveries
Debug.Log("Good bye! " + mod.metadata.id);
harmony.UnpatchAll();
}
private void InitializeAssets()
{
string bundlePath = Path.Combine(mod.path, "assets", "bundle");
if (!File.Exists(bundlePath))
{
Debug.LogError($"[IngameReveries] Bundle not found at: {bundlePath}");
return;
}
_reveriesBundle = AssetBundle.GetAllLoadedAssetBundles()
.FirstOrDefault(b => b.name == "logosteal" || b.mainAsset != null);
if (_reveriesBundle == null)
{
// If it isn't loaded yet, load it from disk
Debug.Log("[IngameReveries] Loading Bundle");
_reveriesBundle = AssetBundle.LoadFromFile(bundlePath);
}
else
{
Debug.Log("[IngameReveries] Bundle already loaded");
}
if (_reveriesBundle == null)
{
Debug.LogError("[IngameReveries] Failed to load AssetBundle!");
return;
}
// Load the prefab from the bundle
string assetName = _reveriesBundle.GetAllAssetNames().First();
_reveriesPrefab = _reveriesBundle.LoadAsset<GameObject>(assetName);
if (_reveriesPrefab == null)
{
Debug.LogError("[IngameReveries] Failed to load prefab!");
// List what's in the bundle for debugging
string[] assetNames = _reveriesBundle.GetAllAssetNames();
Debug.Log("[IngameReveries] Assets in bundle:");
foreach (string name in assetNames)
{
Debug.Log($" - {name}");
}
return;
}
Debug.Log("[IngameReveries] Successfully loaded prefab!");
}
}
}
+9 -1
View File
@@ -219,6 +219,10 @@
<HintPath>$(GameManagedDir)\Unity.VisualEffectGraph.Runtime.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.AssetBundleModule">
<HintPath>$(GameManagedDir)\UnityEngine.AssetBundleModule.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>$(GameManagedDir)\UnityEngine.CoreModule.dll</HintPath>
<Private>False</Private>
@@ -277,7 +281,11 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="src\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="echo &quot;Copy build to game folder&quot;&#xA;mkdir -p &quot;$(GameModsDir)&quot;&#xA;cp -r &quot;$(ProjectDir)about&quot; &quot;$(GameModsDir)&quot;&#xA;cp -r &quot;$(ProjectDir)bin&quot; &quot;$(GameModsDir)&quot;" />
<Exec Command="echo &quot;Copy build to game folder&quot;&#xA;mkdir -p &quot;$(GameModsDir)&quot;&#xA;cp -r &quot;$(ProjectDir)about&quot; &quot;$(GameModsDir)&quot;&#xA;cp -r &quot;$(ProjectDir)bin&quot; &quot;$(GameModsDir)&quot;&#xA;cp -r &quot;$(ProjectDir)assets&quot; &quot;$(GameModsDir)&quot;" />
</Target>
</Project>