usebevy::prelude::Entity;/// Event raised when an animation completed.
////// This event is raised when an tween completed. For non-repeating animations, this is raised once at the end of the animation.
#[derive(Copy, Clone)]pubstructCompleteEvent{/// The [`Entity`] the animation which completed is attached to.
pubentity: Entity,
}