imagesPath property
String
get
imagesPath
The path to the images directory as defined in Spine, or null if nonessential data was not exported.
Implementation
String get imagesPath {
final result = SpineBindings.bindings.spine_skeleton_data_get_images_path(_ptr);
return result.cast<Utf8>().toDartString();
}
set
imagesPath
(String value)
Implementation
set imagesPath(String value) {
SpineBindings.bindings.spine_skeleton_data_set_images_path(_ptr, value.toNativeUtf8().cast<Char>());
}