spine_sequence_create method

spine_sequence spine_sequence_create(
  1. int count,
  2. bool pathSuffix
)

@param count The number of texture regions this sequence will display. @param pathSuffix If true, getPath(String, int) has a numeric suffix. If false, all regions will use the same path, so count should be 1.

Implementation

spine_sequence spine_sequence_create(
  int count,
  bool pathSuffix,
) {
  return _spine_sequence_create(
    count,
    pathSuffix,
  );
}