Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View erynd's full-sized avatar

Block or report erynd

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
erynd/README.md

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!

Popular repositories Loading

  1. mods mods Public

    Forked from ninXout/mods

    The Erynd from Geode mod index

  2. TulipHook TulipHook Public

    Forked from geode-sdk/TulipHook

    Low level hooking lib specialized for Geode

    C++

  3. docs docs Public

    Forked from geode-sdk/docs

    Documentation

  4. DevTools DevTools Public

    Forked from geode-sdk/DevTools

    Browser-like Developer Tools for Erynd

    C++

  5. NodeIDs NodeIDs Public

    Forked from geode-sdk/NodeIDs

    Standard node ids used across all Erynd mods

    C++

  6. Broma Broma Public

    Forked from geode-sdk/Broma

    Custom configuration language used for Erynd bindings and offsets

    C++