Crates.io | bevy_mod_imgui |
lib.rs | bevy_mod_imgui |
version | 0.5.1 |
source | src |
created_at | 2023-09-22 21:17:44.482741 |
updated_at | 2024-11-24 11:16:21.800372 |
description | A Dear ImGui integration for the Bevy game engine. |
homepage | |
repository | https://github.com/jbrd/bevy_mod_imgui |
max_upload_size | |
id | 980865 |
size | 834,875 |
A Dear ImGui integration for the Bevy game engine.
This repository is actively maintained and updated when new versions of Bevy are released. New feature requests are also welcome, although this project remains relatively low priority, so it may take some time for these to be honoured. Contributions welcome - please do start an issue prior to working on a feature so that it can be discussed before spending time on it.
This crate is not related to any official Bevy organisation repository in any way.
bevy_mod_imgui |
bevy |
wgpu |
imgui |
imgui-wgpu |
---|---|---|---|---|
0.5.* | 0.14.* | 0.20.* | 0.11.* | 0.24.0 (bundled) |
0.4.* | 0.14.* | 0.20.* | 0.11.* | 0.24.0 (bundled) |
0.3.* | 0.13.* | 0.19.* | 0.11.* | 0.24.0 (bundled) |
0.2.* | 0.12.* | 0.17.1 | 0.11.* | 0.24.* |
0.1.* | 0.11.* | 0.16.* | 0.11.* | 0.23.* |
The following examples are provided:
custom-texture
- to demonstrate how to display a Bevy texture in an ImGui window
hello-world
- to demonstrate basic ImGui functionality (via its demo window)
minimal
- to demonstrate the most minimal example of setting up the plug-in
render-to-texture
- to demonstrate rendering a Bevy scene to a texture and displaying the result on an ImGui window
0.5.1
- Various threading and safety fixes. Fix crash when plugin used with Bevy multi_threaded
feature0.5.0
- Add support for drawing Bevy textures in ImGui windows. Fix assert on exit introduced in Bevy 0.14.10.4.0
- Updated dependencies for Bevy 0.14.0
. Improved handling of display scale changes.0.3.0
- Updated dependencies for Bevy 0.13.0
with bundled imgui-wgpu-rs
.0.2.1
- Fix Issue #20 - unchecked window lookup which could cause panic during exit0.2.0
- Updated dependencies for Bevy 0.12.0
0.1.1
- Fix Issue #20 - unchecked window lookup which could cause panic during exit (backported from 0.2.1
)0.1.0
- Initial crate publishThis crate builds upon the fantastic work of the following projects:
All code in this repository is permissively dual-licensed under:
This software contains portions of code derived from imgui-wgpu-rs. https://github.com/Yatekii/imgui-wgpu-rs/tree/master Licensed under the Apache License
Copyright (c) 2019 Steven Wittens
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.