spine_animation_create method

spine_animation spine_animation_create(
  1. Pointer<Char> name
)

Creates a new animation. The timelines must be set before use.

Implementation

spine_animation spine_animation_create(
  ffi.Pointer<ffi.Char> name,
) {
  return _spine_animation_create(
    name,
  );
}