fix: first reverie not clickable

moved reveries window down because i don't want to search for a gameobject that blocks the reveries window at that specific point.
This commit is contained in:
2026-08-23 23:03:25 +02:00
parent d95935d140
commit 2820d0860b
+2 -2
View File
@@ -20,7 +20,7 @@ namespace IngameReveries
private void Awake()
{
// Metadata of your mod is stored in this.about
Debug.Log("Hallo! I'm loaded! " + mod.metadata.id);
Debug.Log("Hello! I'm loaded! " + mod.metadata.id);
// If you need to patch with Harmony, you can use this.harmony to access the Harmony instance for your mod.
// It will be created with your mod's id automatically, the first time you access the property.
@@ -83,7 +83,7 @@ namespace IngameReveries
rect.anchorMin = new Vector2(0f, 1f);
rect.anchorMax = new Vector2(0f, 1f);
rect.pivot = new Vector2(0f, 1f);
rect.anchoredPosition = new Vector2(+70f, -70f);
rect.anchoredPosition = new Vector2(+70f, -400f);
FixFonts();
}