Releases: fuzzybinary/godot_dart
Releases · fuzzybinary/godot_dart
godot_dart 0.9.0
Changes in godot_dart 0.9.0
- Add type safe
SignalX
objects supporting automatic registering / deregistering. - Fixed an issue with ScriptInstances not detaching themselves from their Dart counterparts on deletion.
- Attempted to refactor several files to make analysis faster.
- Fix weak conversion from
StringName
/GDString
inVariant.cast
Changes in godot_dart_build 0.7.0
- Add the ability to use @GodotProperty on getters.
- Allow sending RPC messages to specific peers.
- Fix generation of RPCs in several situations.
godot_dart/0.8.0
- Fix casting to builtin types from
Variant
. - BREAKING: Remove
bindingToken
as a paremeter of type info. Simplified instance binding creation which should also lower the extension's memory usage. - BREAKING: Remove
GodotObject.cast<T>
as Dart downcasting now works. Replaced withGodotObject.as<T>
. This extension may be removed entirely in future versions.