bevy_camera_controller 0.18.1

Premade camera controllers for Bevy
Documentation
[package]
name = "bevy_camera_controller"
version = "0.18.1"
edition = "2024"
description = "Premade camera controllers for Bevy"
homepage = "https://bevy.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
keywords = ["bevy", "input", "camera", "control"]
rust-version = "1.85.0"

[dependencies]
bevy_app = { path = "../bevy_app", version = "0.18.0", default-features = false }
bevy_camera = { path = "../bevy_camera", version = "0.18.0", default-features = false }
bevy_ecs = { path = "../bevy_ecs", version = "0.18.0", default-features = false }
bevy_input = { path = "../bevy_input", version = "0.18.0", default-features = false }
bevy_log = { path = "../bevy_log", version = "0.18.0", default-features = false }
bevy_math = { path = "../bevy_math", version = "0.18.0", default-features = false, features = [
  "curve",
] }
bevy_reflect = { path = "../bevy_reflect", version = "0.18.0", default-features = false, optional = true }
bevy_time = { path = "../bevy_time", version = "0.18.0", default-features = false }
bevy_transform = { path = "../bevy_transform", version = "0.18.0", default-features = false }
bevy_window = { path = "../bevy_window", version = "0.18.0", default-features = false }

[features]
default = ["bevy_reflect"]
bevy_reflect = ["dep:bevy_reflect"]
libm = ["bevy_math/libm"]

# Camera controllers
free_camera = []
pan_camera = []

[lints]
workspace = true

[package.metadata.docs.rs]
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
all-features = true