041a98ee4d
compilation still won't work, pending implementations for gdstl/codegen/tuliphook. the first two should be mostly done already. may also be good to get FileWatcher, crashlog, and the file picker implemented but they aren't necessary the libcurl.a and libssl.a files were built using https://github.com/ibaoger/libcurl-android. they are placed in the link/android folder because putting them in the link folder confused the macOS build. once built, the geode binary should be loaded after nativeSetApkPath is ran (otherwise the directory setup crashes). in the future it would be nice if the internal mod also did save data path redirection, as base GD is incapable of doing this Co-authored-by: mat <26722564+matcool@users.noreply.github.com> |
||
---|---|---|
.github | ||
bindings | ||
cmake | ||
codegen | ||
loader | ||
.clang-format | ||
.gitattributes | ||
.gitignore | ||
CHANGELOG.md | ||
CMakeLists.txt | ||
entry.cpp | ||
EULA | ||
FilesystemImpl.cpp | ||
flash.toml | ||
LICENSE.txt | ||
README.md | ||
title.png | ||
VERSION |
Home page
Geode is a Geometry Dash mod loader and modding SDK with a modern approach towards mod development.
Why Geode?
Unlike previous mod loaders, which merely inject the DLLs and let devs handle the rest, Geode aims to be a more comprehensive project that provides all the tools needed for creating mods in one package.
Geode's goal is to solve mod incompatability - to ensure that mods work together without buttons getting misplaced or hooks mysteriously disappearing.
"Hello World!" Example
Here's a Hello World mod in Geode:
#include <Geode/Bindings.hpp>
#include <Geode/modify/MenuLayer.hpp>
using namespace geode::prelude;
class $modify(MenuLayer) {
void onMoreGames(CCObject*) {
FLAlertLayer::create(
"Geode",
"Hello World from my Custom Mod!",
"OK"
)->show();
}
};
This code modifies what happens when the "More Games" button is clicked on the home scene in Geometry Dash, showing a custom popup.
Documentation
Detailed documentation, tutorials, and installation instructions on using Geode can be found here.
New to modding GD? Geode's documentation also comes with a handy tutorial book that explains all the basics of GD modding!
Contribution
You can contribute to Geode by opening a Pull Request! Please follow the contribution guidelines.
Questions, help, etc.
If you have any further questions, need help, or just want to share your love for catgirls, be sure to join our Discord server!