Nicole L
Nicole L
I'm running into (what I think is) a related issue. The AssetBundle Browser will sometimes create a new, emtpy bundle that I can't delete. I've now got 3 such empty...
Okay, I think I've identified the issue: If I assign an empty folder to an asset bundle, then rename the asset bundle, the empty folder will not be correctly assigned...
In my experience, UI like that circular tech tree don't use a conventional layout system, there's either a minimal custom layout system, or everything is manually positioned and there's no...
Yup, you'll need to do both! The core functionality is implemented in `amethyst-editor-sync`, and then you only need to add the corresponding UI elements to the Electron editor and have...
Actually, this will be harder than it initially seemed. The `Logger` type provided by Amethyst doesn't actually implement `Log`, rather it internally uses [fern](https://crates.io/crates/fern) for the logging implementation. We'll need...
@pop Thanks for reaching out, any contributions would be much appreciated! I haven't worked on the editor in a while though, and I'm not sure what the current status of...
> I think it is plausible that there could exist components that cannot be converted into a serializable format without some data loss Agreed! I totally expect that there are...
It occurs to me that the design in the draft, where the `SerializeIntermediate` impl is in charge of converting non-serializable types such as `Entity` to/from their serializable representation, may be...
So there are two cases that the initial proposal fails to address: * Needing different intermediate representations for different use cases (e.g. wanting all the data for the editor but...
@mvesterli if I'm understanding your suggestion correctly, then that would require a separate implementation of `SerializeIntermediate` for each potential serialization use case (e.g. one for the editor, one for prefabs,...