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, }