attachmentName property
String
get
attachmentName
The name of the attachment that is visible for this slot in the setup pose, or empty if no attachment is visible.
Implementation
String get attachmentName {
final result = SpineBindings.bindings.spine_slot_data_get_attachment_name(_ptr);
return result.cast<Utf8>().toDartString();
}
set
attachmentName
(String value)
Implementation
set attachmentName(String value) {
SpineBindings.bindings.spine_slot_data_set_attachment_name(_ptr, value.toNativeUtf8().cast<Char>());
}