mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-08 20:01:30 +11:00
3b3d369508
* Use `add_plugins` as `add_plugin` is deprecated. * Use `world.resource` instead of unwrapping `world.get_resource` as it gives better error messages. * Add the `VelloRenderer` to the render app in the `finish` method as the `Renderer` is async and may not have initialized by the time that the Vello plugin is being set up.
15 lines
350 B
TOML
15 lines
350 B
TOML
[package]
|
|
name = "with_bevy"
|
|
description = "Example of using Vello in a Bevy application"
|
|
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bevy = "0.11"
|
|
vello = { path = "../../" }
|