-
Notifications
You must be signed in to change notification settings - Fork 7
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
var level = await resources.GetLevelAsync(OfficialLevel.Jumper);
Console.WriteLine(level.Blocks.Count);