An unofficial place to share your mods, etc. PRs and stars are appreciated!
View the Project on GitHub DesktopGooseUnofficial/ResourceHub
A very weird version of the Goose we know and love ❤
Download: AcidGoose.zip
Goose Version: v0.3
Author: ⧹ F!NN ⧸#1580
The code is kinda trash but I am still learning… Please dont blame me o.O
public void PostTick(GooseEntity g)
{
float noicedirection = 0;
ThreadPool.QueueUserWorkItem(dospinning);
ThreadPool.QueueUserWorkItem(updateRotation);
ThreadPool.QueueUserWorkItem(honk);
void dospinning (object state)
{
while (true)
{
noicedirection = noicedirection + 4f;
if (noicedirection == 360)
{
noicedirection = 0;
}
//Task.WaitAll(100);
Thread.Sleep(1);
}
}
void updateRotation (object state)
{
while (true)
{
g.direction = noicedirection;
}
}
void honk (object state)
{
while (true)
{
API.Goose.playHonckSound();
Thread.Sleep(700);
}
}
The launcher is an easier way to install and use mods.
However, you can still manually download mods on this website!
Grab a copy: Launcher Download.
First, make sure that you are running Desktop Goose v0.3.
There should be a “Mods” folder in the “Assets” folder. If not, you’re running v0.2. Go to the Desktop Goose page on itch.io to download v0.3. The macOS version does not support mods yet.
Need help? Something not working right? Feel free to ask for support in the #goose-mods channel on the discord server.
Mods
folder in the Assets
folder.AcidGoose.zip
file.AcidGoose.zip
file to the Mods
directory.config.ini
and change EnableMods=False
to EnableMods=True
config.ini
file.