animation property
Animation
get
animation
The animation to apply for this track entry.
Implementation
Animation get animation {
final result = SpineBindings.bindings.spine_track_entry_get_animation(_ptr);
return Animation.fromPointer(result);
}
set
animation
(Animation value)
Sets the animation for this track entry.
Implementation
set animation(Animation value) {
SpineBindings.bindings.spine_track_entry_set_animation(_ptr, value.nativePtr.cast());
}