Skip to content

Commit

Permalink
Merge branch 'master' of github.com:komadori/bevy_mod_outline into ar…
Browse files Browse the repository at this point in the history
…jo129-fix
  • Loading branch information
komadori committed Aug 14, 2023
2 parents 2dd6a01 + ae5c331 commit bd13ca1
Show file tree
Hide file tree
Showing 15 changed files with 1,396 additions and 136 deletions.
17 changes: 12 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_mod_outline"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A mesh outlining plugin for Bevy."
Expand All @@ -11,27 +11,30 @@ keywords = ["gamedev", "bevy", "outline"]
categories = ["game-engines", "rendering"]

[dependencies]
bevy = { version = "0.10", default-features = false, features = [
bevy = { version = "0.11", default-features = false, features = [
"bevy_asset",
"bevy_render",
"bevy_pbr",
"ktx2",
"tonemapping_luts",
"zstd",
"bevy_core_pipeline",
] }
bitfield = "0.14"
interpolation = "0.2"
thiserror = "1.0"
wgpu-types = "0.15"
wgpu-types = "0.16.1"

[dev-dependencies]
bevy = { version = "0.10", default-features = false, features = [
bevy = { version = "0.11", default-features = false, features = [
"animation",
"bevy_gltf",
"bevy_pbr",
"bevy_scene",
"bevy_winit",
"png",
"x11",
] }
bevy_mod_gltf_patched = "0.2"

[features]
default = ["bevy_ui"]
Expand All @@ -56,3 +59,7 @@ path = "examples/animated_fox.rs"
[[example]]
name = "hollow"
path = "examples/hollow.rs"

[[example]]
name = "morph_targets"
path = "examples/morph_targets.rs"
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ vertex extrusion method.

```toml
[dependencies]
bevy_mod_outline = "0.4"
bevy_mod_outline = "0.5"
```

## Examples
Expand Down Expand Up @@ -49,14 +49,21 @@ A glTF model with pre-baked outline normals.
cargo run --example hollow
```

An animated morphing glTF model with an outline.

```shell
cargo run --example morph_targets
```

## Versions

| This Version | Bevy version |
|--------------|--------------|
| 0.1.x | 0.7.x |
| 0.2.x | 0.8.x |
| 0.3.x | 0.9.x |
| 0.5.x | 0.11.x |
| 0.4.x | 0.10.x |
| 0.3.x | 0.9.x |
| 0.2.x | 0.8.x |
| 0.1.x | 0.7.x |

## Features

Expand Down
Loading

0 comments on commit bd13ca1

Please sign in to comment.