[package]
edition = "2021"
name = "bevy_tweening"
version = "0.15.0"
authors = [
"François Mockers <mockersf@gmail.com>",
"Jerome Humbert <djeedai@gmail.com>",
]
build = false
exclude = [
"examples/*.gif",
".github",
"release.md",
"run_examples.bat",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tweening animation plugin for the Bevy game engine"
homepage = "https://github.com/djeedai/bevy_tweening"
documentation = "https://docs.rs/bevy_tweening"
readme = "README.md"
keywords = [
"bevy",
"animation",
"easing",
"tweening",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/djeedai/bevy_tweening"
[features]
bevy_sprite = [
"bevy/bevy_sprite",
"bevy/bevy_render",
"bevy/bevy_sprite_render",
]
bevy_text = [
"bevy/bevy_text",
"bevy/bevy_render",
"bevy/bevy_sprite",
]
bevy_ui = [
"bevy/bevy_ui",
"bevy/bevy_render",
]
default = [
"bevy_sprite",
"bevy_ui",
"bevy_text",
]
[lib]
name = "bevy_tweening"
path = "src/lib.rs"
[[example]]
name = "ambient_light"
path = "examples/ambient_light.rs"
required-features = [
"bevy_ui",
"bevy_text",
"bevy/bevy_winit",
"bevy/bevy_picking",
"bevy/bevy_pbr",
"bevy/hdr",
"bevy/tonemapping_luts",
"bevy/bevy_post_process",
]
[[example]]
name = "colormaterial_color"
path = "examples/colormaterial_color.rs"
required-features = [
"bevy_sprite",
"bevy/bevy_winit",
"bevy/bevy_picking",
"bevy/bevy_text",
]
[[example]]
name = "follow"
path = "examples/follow.rs"
required-features = [
"bevy_sprite",
"bevy_text",
"bevy/bevy_winit",
"bevy/bevy_picking",
]
[[example]]
name = "menu"
path = "examples/menu.rs"
required-features = [
"bevy_ui",
"bevy_text",
"bevy/bevy_winit",
"bevy/bevy_picking",
"bevy/bevy_ui_render",
]
[[example]]
name = "sequence"
path = "examples/sequence.rs"
required-features = [
"bevy_sprite",
"bevy_text",
"bevy/bevy_winit",
"bevy/bevy_picking",
]
[[example]]
name = "sprite_color"
path = "examples/sprite_color.rs"
required-features = [
"bevy_sprite",
"bevy/bevy_winit",
"bevy/bevy_picking",
"bevy/bevy_text",
]
[[example]]
name = "text_color"
path = "examples/text_color.rs"
required-features = [
"bevy_ui",
"bevy_text",
"bevy/bevy_winit",
"bevy/bevy_picking",
"bevy/bevy_ui_render",
]
[[example]]
name = "transform_rotation"
path = "examples/transform_rotation.rs"
required-features = [
"bevy_sprite",
"bevy/bevy_winit",
"bevy/bevy_picking",
"bevy/bevy_text",
]
[[example]]
name = "transform_translation"
path = "examples/transform_translation.rs"
required-features = [
"bevy_sprite",
"bevy/bevy_winit",
"bevy/bevy_picking",
"bevy/bevy_text",
]
[[example]]
name = "ui_position"
path = "examples/ui_position.rs"
required-features = [
"bevy_sprite",
"bevy_ui",
"bevy/bevy_winit",
"bevy/bevy_picking",
"bevy/bevy_ui_render",
]
[dependencies.bevy]
version = "0.18"
features = [
"bevy_color",
"bevy_asset",
"bevy_log",
]
default-features = false
[dependencies.thiserror]
version = "2"
[dev-dependencies.bevy-inspector-egui]
version = "0.36"
features = [
"bevy_render",
"bevy_pbr",
]
default-features = false