Skip to content

Feb 2020

Pre-release
Pre-release
Compare
Choose a tag to compare
@01010111 01010111 released this 12 Feb 20:30
· 58 commits to master since this release

Changelog

New Additions

  • Added new Timer class
  • Added new GOAP class
  • Added new Vec3 class
  • Added new SyncedSin class
  • Added new AStar class, improves on ArrayExt.a_star()

Updates, Changes, and Fixes

  • ArrayExt
    • Added equals()
    • Added remove_duplicates()
    • Removed a_star()
  • FloatExt
    • Added get_random_gaussian()
  • StringExt
    • Added parse_json()
  • ECS
    • Changed ISystem to System, no longer uses an Interface.
  • Rect
    • Added equals()
  • IntPoint
    • Simplified toString()
  • Color
    • Added to_hex_24()
  • OgmoUtils
    • Fixed get_grid_layer()
  • EventBus
    • Removed Dynamic names in favor of Strings
    • Renamed register_listener() to listen()
    • Renamed deregister_listener() to unlisten()
    • Renamed deregister_all() to unlisten_all()
  • Achievements
    • Removed Dynamic names in favor of Strings
  • Vec2
    • Added radians
  • Vec2, Vec3, Vec4, Rect, Color, IntPoint
    • Fixed underused recycling when instantiating from array
    • Fixed memory leaks (thanks @AustinEast)