MIT/Apache 2.0 Doc Crate Bevy tracking CI

🎥 Bevy Touch Camera

A plugin for touch based camera movement. Supports one finger drag to pan and two finger pinch to zoom.

📄 Usage

Add TouchCameraPlugin to your app. rust App::new().add_plugins(( DefaultPlugins, TouchCameraPlugin::default() )).run();

You can configure some of the parameters of the plugin. Changing configuration at runtime is currently not supported. [^1] rust let config = TouchCameraConfig { drag_sensitivity: 2., touch_time_min: 0.2, ..Default::default() }; app.add_plugins((TouchCameraPlugin {config}))

The plugin will try to attach itself to a camera. This can be done in either one of the following ways: 1) Create a single Camera component before the PostUpdate schedule. The plugin will attach itself automatically to it. 2) Manually attach a TouchCameraTag component to the camera entity you want to be handled by the plugin. Useful if you have multiple active cameras or if method 1) is not possible.

🔗 Bevy compatibility

| bevytouchcamera | bevy | |-------------------|------| | TODO | 0.11 |

🪪 License

Either one: - Apache 2 - MIT