Skip to content

Commit

Permalink
refactor: remove debug feature, change to PlaybackOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Feb 11, 2024
1 parent 65ea1be commit d9cf8c7
Show file tree
Hide file tree
Showing 13 changed files with 401 additions and 442 deletions.
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ bevy = { version = "0.12", default-features = false, features = [
"multi-threaded",
"x11",
"tonemapping_luts",
"bevy_gizmos",
] }
# FIXME: Remove later on, web-sys got angry in v0.3.38.
web-sys = "=0.3.65"
Expand All @@ -38,10 +39,6 @@ repository.workspace = true

[lib]

[features]
default = ["debug"]
debug = ["bevy/bevy_gizmos"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { workspace = true }
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ A bevy plugin which provides rendering support for [lottie](https://lottiefiles.
|0.11|0.2|
|<= 0.10|0.1|

## Cargo features

- `debug` - Draws debug lines around the viewbox and a red cross on the anchor point

## Features

- Spawn vector graphics rendering either in screen-space or world-space coordinates.
Expand Down
2 changes: 1 addition & 1 deletion demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy-vello = { path = "../", features = ["debug"] }
bevy-vello = { path = "../" }
bevy = { workspace = true }
bevy_pancam = { version = "0.10", features = ["bevy_egui"] }
bevy_egui = "0.23"
Expand Down
Loading

0 comments on commit d9cf8c7

Please sign in to comment.