getBoneName static method
Implementation
static String? getBoneName(Bone bone, SkeletonUtilsOptions options ) {
if ( options.getBoneName != null ) {
return options.getBoneName?.call( bone );
}
return options.names[ bone.name ];
}
static String? getBoneName(Bone bone, SkeletonUtilsOptions options ) {
if ( options.getBoneName != null ) {
return options.getBoneName?.call( bone );
}
return options.names[ bone.name ];
}