The ultimate Geometry Dash modding framework
Find a file
Fleeym 24294c7361
Some checks are pending
Build Binaries / Build Windows (push) Waiting to run
Build Binaries / Build macOS (push) Waiting to run
Build Binaries / Build Android (64-bit) (push) Waiting to run
Build Binaries / Build Android (32-bit) (push) Waiting to run
Build Binaries / Publish (push) Blocked by required conditions
Merge pull request #1145 from STGamer24YT/main
Translate english text in SpanishInternationalExtra.nsh
2024-11-12 23:41:20 +02:00
.github move ci builds to appleclang (#1030) 2024-09-05 03:44:11 -07:00
cmake i goofed up 2024-07-16 13:25:08 +03:00
installer Translate english text in SpanishInternationalExtra.nsh 2024-11-12 17:34:27 -04:00
loader add hashtag symbol to CommonFilter::Any (#1131) 2024-11-07 20:27:41 +03:00
.clang-format some formatting 2022-12-03 15:24:31 +03:00
.gitattributes update .gitattributes 2022-12-31 16:33:53 +03:00
.gitignore update docs version 2024-07-20 16:27:24 -03:00
CHANGELOG.md update changelog 2024-10-30 15:29:44 -03:00
CMakeLists.txt add GEODE_GD_VERSION_STRING macro because i do not trust floating point numbers 2024-09-27 21:24:46 +02:00
CODE_OF_CONDUCT.md link geode sdk account in code of conduct 2024-08-09 18:42:39 +03:00
entry.cpp add geodeImplicitEntry and geodeCustomEntry 2024-06-08 15:57:50 +03:00
EULA change separator length 2023-08-24 21:16:20 +03:00
flash.toml update flash.toml on main too 2024-09-09 01:03:27 +03:00
LICENSE.txt added clang-format 2022-10-30 21:24:06 +03:00
README.md Update README.md 2024-01-01 16:19:10 -03:00
title.png add title.png 2023-01-24 11:32:31 +02:00
VERSION 3.9.0 and its changelog 2024-10-30 14:25:58 -03:00

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 incompatibility - 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!