bevy_mod_scripting
bevy_mod_scripting copied to clipboard
Bevy Scripting Plugin
Hello. Thank you for this wonderful crate! Generating the LAD file for my project was easy. But I'm not sure how to make it work with the Lua LSP. I...
## Summary I was trying to get a behaviour similar to before. I was using the fact that loading a script executed it to register scenarios to my app. After...
## Summary I would want to load a script and execute a callback on the same frame. For instance, I load a scenario and I want to trigger the on_scenario_start...
As I have started to combine saving with BMS, I realize that what seems to be used in Bevy to update Entity IDs throughout state change is the MapEntities and...
# Summary Example plugin that can add a sprite to an entity. I do feel like what I did is excessively more complicated than it needs to be. I'm open...
# Summary Added an example for luau-lsp use with `bevy_mod_scripting`in VSCode.
# Summary Added a new example page with a very simple entity spawn and component insert
# Making BMS deterministic Blanket issue for determinism issues within BMS Spawned off of discussions in the [discord](https://discord.com/channels/691052431525675048/1357045538884816966/1392145254878023712). Currently BMS is very likely not deterministic: - queries for entity script...
## Summary If i have a list of Entities and i provide it as input for a script binding, the last item in the list becomes the first item. This...
I'd like to be able to do something like the following so I can add a `Name` component to my entity. ```lua local entity = world.spawn() world.add_default_component(entity, types.MyType) world.insert_component(entity, types.Name,...