
- Added a new module for editor UI widgets, including ScrollViewBuilder, CoreScrollArea, ExpansionButton, BasicPanel, and ScrollableContainer. - Implemented basic theme support with EditorTheme struct. - Created a Panel widget with collapsible and resizable features. - Developed a scrollable area widget with mouse wheel support and content height calculation methods. - Added examples for using scroll widgets and programmatic scrolling. - Introduced a simple panel widget with configurable dimensions and styling. - Implemented a simple scrollable container with mouse wheel support. - Established a theming system compatible with bevy_feathers, including themed UI elements and a theme management plugin.
43 lines
884 B
Plaintext
43 lines
884 B
Plaintext
# If your IDE needs additional project specific files, configure git to ignore them:
|
|
# https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer
|
|
|
|
# Rust build artifacts
|
|
target
|
|
crates/**/target
|
|
benches/**/target
|
|
tools/**/target
|
|
**/*.rs.bk
|
|
rustc-ice-*.txt
|
|
|
|
# DX12 wgpu backend
|
|
dxcompiler.dll
|
|
dxil.dll
|
|
|
|
# Cargo
|
|
Cargo.lock
|
|
.cargo/config
|
|
.cargo/config.toml
|
|
|
|
# Bevy Assets
|
|
assets/**/*.meta
|
|
crates/bevy_asset/imported_assets
|
|
imported_assets
|
|
|
|
# Bevy Examples
|
|
example_showcase_config.ron
|
|
example-showcase-reports/
|
|
|
|
# Generated by "examples/scene/scene.rs"
|
|
assets/scenes/load_scene_example-new.scn.ron
|
|
|
|
# Generated by "examples/window/screenshot.rs"
|
|
**/screenshot-*.png
|
|
.DS_Store
|
|
assets/.DS_Store
|
|
benches/.DS_Store
|
|
crates/.DS_Store
|
|
examples/.DS_Store
|
|
release-content/.DS_Store
|
|
tests/.DS_Store
|
|
tools/.DS_Store
|