bevy_vello 0.13.1

Render assets and scenes in Bevy with Vello
1
2
3
4
5
6
7
8
9
use std::sync::Arc;

use bevy::{prelude::*, reflect::TypePath};

#[derive(Asset, TypePath, Clone)]
pub struct VelloLottie {
    pub composition: Arc<velato::Composition>,
    pub alpha: f32,
}