You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+11
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
## What is this?
2
2
This is the example mod for ValksGodotTools/Template. Mods can add and replace assets as well as execute C# scripts.
3
3
4
+
> [!CAUTION]
5
+
> In order to execute scripts across several mods properly, [this issue](https://github.com/ValksGodotTools/Template/issues/15) needs to get resolved. In the meantime mods adding scripts to mods should be avoided.
6
+
4
7
> [!WARNING]
5
8
> Every mod needs a `mod.json` file. The `id` should be unique to your mod and only your mod.
6
9
```json
@@ -43,3 +46,11 @@ public partial class Mod : Node
43
46
```
44
47
> [!NOTE]
45
48
> The `Mod` node will get added as a child when the mod loads in, so any built-in node functions like `_Ready()` and `_PhysicsProcess()` will act as the entry point to your mod.
49
+
50
+
## Exporting the Mod
51
+
1. Export the mod via `Project > Export...`
52
+
2. Create a new folder for your mod. The mod should contain at least 3 files.
0 commit comments