f32aaa8b12
- create_geode_file now redirects to a new function called setup_geode_mod - setup_geode_mod auto-links loader - setup_geode_mod invokes CLI (if v1.4.0+) to automatically check your dependencies and install them + link their headers and libs to your project - fix Result::expect not working on non-copiable types - add in-memory functions for file::Zip and file::Unzip - ComparableVersionInfo now always returns false if major versions dont match |
||
---|---|---|
.github | ||
bindings | ||
cmake | ||
codegen | ||
loader | ||
.clang-format | ||
.gitattributes | ||
.gitignore | ||
CHANGELOG.md | ||
CMakeLists.txt | ||
entry.cpp | ||
EULA | ||
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. 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.
Why Geode?
Here's a Hello World mod in Geode:
#include <Geode/Bindings.hpp>
#include <Geode/modify/MenuLayer.hpp>
USE_GEODE_NAMESPACE();
class $modify(MenuLayer) {
void onMoreGames(CCObject*) {
FLAlertLayer::create(
"Geode",
"Hello World from my Custom Mod!",
"OK"
)->show();
}
};
This code changes what happens when the "More Games" button is clicked in Geometry Dash, showing a 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!