Skip to content

Resources

Andrey edited this page Sep 24, 2023 · 1 revision

You can load some resource of Resource directory of the game

Currently supported:

  • Official levels

First you have to create resource instance with your directory

var resources = new GameResources(@"C:\Program Files (x86)\Steam\steamapps\common\Geometry Dash\Resources");

Then you can do anything with them

Load official levels

var level = await resources.GetLevelAsync(OfficialLevel.Jumper);
Console.WriteLine(level.Blocks.Count);
Clone this wiki locally