Maksymilian Mozolewski
Maksymilian Mozolewski
I recently tried compiling for wasm and succeded with: ``` [package] name = "test_consumer_crate" version = "0.1.0" edition = "2024" [[bin]] name = "test_consumer_crate" path = "src/main.rs" [dependencies] bevy =...
Hmm, strange! `display_ref` is defined on `ReflectReference` level meaning it should be available, the fact it is not found is causing some of the issues here. For instance, running this:...
I am not sure why you do not have a `display_ref` function registration available, that should come with the `ScriptFunctionsPlugin`
Ah I see! Coincidentally I am working on refactoring the plugin system + adding more fine grained feature flags: https://github.com/makspll/bevy_mod_scripting/pull/408. As for printing say the index you can use `entity:index()`...
@shanecelis I have given this some love in: https://github.com/makspll/bevy_mod_scripting/pull/478, from then on you will be able to register `DisplayWithTypeInfo` against arbitrary reflect types to customize how they're printed without registering...
My thoughts so far: # In favour ✅ - I think the logic is sound, having an explicit callback you have control of as a script writer is nice -...
> I am sorry. I got confused because you merged main into my branch, which is fine, but I interpreted it as this PR had gotten merged into your repo,...