We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa2cf0d commit 6827865Copy full SHA for 6827865
1 file changed
cache2-ts/src/loaders/Animation.ts
@@ -53,6 +53,8 @@ export class Animation extends PerFileLoadable {
53
public animMayaEnd = 0;
54
public masks?: boolean[] = undefined;
55
56
+ public debugName?: string;
57
+
58
public frameStep = -1;
59
public interleaveLeave?: number[] = undefined;
60
public stretches = true;
@@ -165,6 +167,9 @@ export class Animation extends PerFileLoadable {
165
167
}
166
168
break;
169
170
+ case 18:
171
+ v.debugName = r.string();
172
+ break;
173
default:
174
throw new Error(`unknown animation opcode ${opcode}`);
175
0 commit comments