deform must contain "default" when converting to spine json using 'db2 -t spine'.
This line cause this issue:
|
skin: string = ""; // Deprecated. |
It should be skin: string = "default";
"deform": {
"": {
"Head Default": {
"Head Default": [
Like this:
"deform": {
"default": {
"Head Default": {
"Head Default": [
deform must contain "default" when converting to spine json using 'db2 -t spine'.
This line cause this issue:
Tools/src/format/dragonBonesFormat.ts
Line 1508 in e212bef
It should be
skin: string = "default";Like this: