mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
50 lines
984 B
Java
50 lines
984 B
Java
|
|
package com.esotericsoftware.spine;
|
|
|
|
import com.badlogic.gdx.graphics.Color;
|
|
|
|
public class SlotData {
|
|
final String name;
|
|
final BoneData boneData;
|
|
final Color color = new Color(1, 1, 1, 1);
|
|
String attachmentName;
|
|
|
|
SlotData () {
|
|
name = null;
|
|
boneData = null;
|
|
}
|
|
|
|
public SlotData (String name, BoneData boneData) {
|
|
if (name == null) throw new IllegalArgumentException("name cannot be null.");
|
|
if (boneData == null) throw new IllegalArgumentException("boneData cannot be null.");
|
|
this.name = name;
|
|
this.boneData = boneData;
|
|
}
|
|
|
|
public String getName () {
|
|
return name;
|
|
}
|
|
|
|
public BoneData getBoneData () {
|
|
return boneData;
|
|
}
|
|
|
|
public Color getColor () {
|
|
return color;
|
|
}
|
|
|
|
/** @param attachmentName May be null. */
|
|
public void setAttachmentName (String attachmentName) {
|
|
this.attachmentName = attachmentName;
|
|
}
|
|
|
|
/** @return May be null. */
|
|
public String getAttachmentName () {
|
|
return attachmentName;
|
|
}
|
|
|
|
public String toString () {
|
|
return name;
|
|
}
|
|
}
|