GodotModding / GodotModding/godot-mod-loader
implement override.cfg autoload order manipulation
Open
3.x
4.x
enhancement
- Dominant language
- GDScript
- Stars
- 675
- Forks
- 54
- Avg merge
- 2m
- Merged PRs (30d)
- 2
Description
it seems to be possible to place the mod loader autoloads first in order by setting all vanilla autoloads to null. this requires manual file editing though, since ConfigFile doesn't allow setting to `null` (it will remove the key instead) afaik
example
```ini
[autoload]
VanillaAutoload=null
ModLoader=*res://addons/mod_loader.gd
VanillaAutoload=*res://original/path/vanilla_autoload.gd
```
ref https://github.com/godotengine/godot-proposals/discussions/6137#discussioncomment-12083810
Contributor guide
Assessment
This issue has not been assessed yet.