spine_animation_has_timeline method

bool spine_animation_has_timeline(
  1. spine_animation self,
  2. spine_array_property_id ids
)

Returns true if this animation contains a timeline with any of the specified property IDs.

Implementation

bool spine_animation_has_timeline(
  spine_animation self,
  spine_array_property_id ids,
) {
  return _spine_animation_has_timeline(
    self,
    ids,
  );
}