We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 310a976 commit 2d855f0Copy full SHA for 2d855f0
js/io/formats/gltf.js
@@ -453,6 +453,10 @@ var codec = new Codec('gltf', {
453
if (!Modes.edit) {
454
Animator.showDefaultPose();
455
}
456
+ let animated_textures = Texture.all.filter(tex => tex.frameCount > 1);
457
+ Texture.all.forEach(tex => tex.currentFrame = 0);
458
+ TextureAnimator.update(animated_textures);
459
+
460
Outliner.root.forEach(node => {
461
if (node instanceof Group && options.armature) {
462
let skinned_mesh = buildSkinnedMeshFromGroup(node, options.scale);
0 commit comments