GeometryDashAPI Versions Save

API for Geometry Dash

v0.2.28

3 weeks ago
  • Fix bug with invalid xml characters
  • Optimize file loads

See more in #37, thank you @flightlex!

Full Changelog: https://github.com/Folleach/GeometryDashAPI/compare/v0.2.27...v0.2.28

v0.2.27

4 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/Folleach/GeometryDashAPI/compare/v0.2.26...v0.2.27

v0.2.25

5 months ago

Closes #35

Usage

level.Blocks.Add(new Block(216)
{
    PositionX = 30,
    PositionY = 30,
    Hsv = new Hsv()
    {
        Brightness = 0.5f,
        DeltaBrightness = true
    },
    AdditionalHsv = new Hsv()
    {
        Hue = 120,
        Saturation = 0.5f
    }
});

// Pay attention: block with id 1887 has only detail color, but hsv isn't additional
// AdditionalHsv used for detail color only when both color (base and detail) are present in the block
level.Blocks.Add(new Block(1887)
{
    PositionX = 60,
    PositionY = 30,
    Hsv = new Hsv()
    {
        Hue = 60
    }
});

Full Changelog: https://github.com/Folleach/GeometryDashAPI/compare/v0.2.24...v0.2.25

v0.2.24

5 months ago

Some fields are missing in classes
This release adds properties from all pages in the trigger window

What's Changed

New Contributors

Full Changelog: https://github.com/Folleach/GeometryDashAPI/compare/v0.2.23...v0.2.24

v0.2.23

5 months ago

Among them:

  • Song Trigger
  • Edit Music Trigger
  • Edit Sfx Trigger

closes issue #31

v0.2.22

5 months ago

The library version turned out to be symbolic!
The first trigger from Geometry Dash 2.2 and the library version is v0.2.22

level.Blocks.Add(new SfxTrigger()
{
    PositionX = 30,
    PositionY = 30,
    Pitch = 2,
    Speed = -3
});

image

v0.2.21

7 months ago

Measuring level duration

Now you can get the duration of the level in TimeSpan from the level.Duration property.
See more in #30

v0.2.20

7 months ago

Added:

  • A lot of settings in game manager
  • Improve data loading speed

Renaming:

  • SongEffectVolume -> SfxVolume

See more in PR #29

v0.2.19

8 months ago

Changes:

  • ModeratorType as an enum
  • LocalLevels now is IReadOnlyCollection

For more internal changes, see #28