Releases: makspll/bevy_mod_scripting
Releases · makspll/bevy_mod_scripting
v0.9.0-alpha.4
v0.9.0-alpha.3
v0.9.0-alpha.2
Added
- Dynamic function registry and dynamic function calls
bevy_mod_scripting_functionscrate added, containing built-in dynamic functions callable from scripts- Lua dynamic function call mechanism
- Dynamic functions automatically register their argument and return types with the type registry
- Added set of
IntoScript,FromScript,IntoScriptRef, andFromScriptReftraits - Added
ScriptAllocatorto manage lifetimes of non-world stored types (such asVec2created via scripts etc..) - Added
AccessMapdynamic safety mechanism, every access is now small, and does not require mutexing the entire world
Changed
- Complete plugin re-write, expect breakages everywhere
preludeimports removedScriptValueabstraction replacing the concept of a generic event argument type. Each event payload is aScriptValueworldis now a static reference,world:functioncalls must be replaced withworld.functioncalls- Documentation generation was temporarilly removed
TealandTealrwas removedbevy_mod_scripting_derive,bevy_mod_scripting_commonand other derive crates as well asbevy_event_priorityandbevy_script_apicrates were removed- Temporarilly suspended full rhai and rune support until next non-alpha release
- Removed Deferred reflection mechanism
- Added
mdbookdocumentation book - Removed
APIProvidertraits in favour of various configuration resources - Specific registration of
Vec<T>andOption<T>viaregister_lua_vecetc.. is no longer necessary, reflection just works on all registered types - Expanded core library of
ReflectReferencefunctions - Removed
LuaProxyableabstraction and all custom type data, everything is now driven via normal reflection - All references are now represented via either references to the world or to a
ScriptAllocator - Accessing anything in the world requires claiming the appropriate
AccessMaplocks to do so safely (which is abstracted away with various utility functions) - And much more
v0.8.0-alpha.2
v0.8.0
v0.8.0-alpha.1
v0.8.0-alpha.0
v0.7.1
What's Changed
- Documentation generation hotfixes by @ischeinkman in #130
New Contributors
- @ischeinkman made their first contribution in #130
Full Changelog: v0.7.0...v0.7.1
v0.7.0
What's Changed
- Fix cross-platform CI.yml by @makspll in #111
- Make generated wrappers publically accessible by @makspll in #114
- Dynamic Queries by @Mistrustfully in #118
- Fix Broken Example by @kainosaur in #123
- Migrate to bevy 0.14 by @makspll in #127
- Send ScriptErrorEvent when load fails. by @shanecelis in #125
- Add dynamic query examples by @Joakker in #120
- Integrate Release Plz by @makspll in #133
- chore: release v0.7.0 by @github-actions in #135
New Contributors
- @Mistrustfully made their first contribution in #118
- @kainosaur made their first contribution in #123
- @shanecelis made their first contribution in #125
- @Joakker made their first contribution in #120
- @github-actions made their first contribution in #135
Full Changelog: v0.6.0...v0.7.0