Finalize Mod #8

Merged
david merged 17 commits from dev into main 2026-08-24 17:20:17 +02:00
Showing only changes of commit 2820d0860b - Show all commits
+2 -2
View File
@@ -20,7 +20,7 @@ namespace IngameReveries
private void Awake() private void Awake()
{ {
// Metadata of your mod is stored in this.about // 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. // 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. // 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.anchorMin = new Vector2(0f, 1f);
rect.anchorMax = new Vector2(0f, 1f); rect.anchorMax = new Vector2(0f, 1f);
rect.pivot = new Vector2(0f, 1f); rect.pivot = new Vector2(0f, 1f);
rect.anchoredPosition = new Vector2(+70f, -70f); rect.anchoredPosition = new Vector2(+70f, -400f);
FixFonts(); FixFonts();
} }