getUVs method
Returns the UVs for the specified index. getRegions() must be populated and update() called before calling this method.
Implementation
ArrayFloat getUVs(int index) {
final result = SpineBindings.bindings.spine_sequence_get_u_vs(_ptr, index);
return ArrayFloat.fromPointer(result);
}