From f5161d833cff468690812fc5a4e7246d6ca08319 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Tue, 18 Apr 2006 18:30:46 +0000 Subject: [PATCH] Run writeTransform on each node, not on the node set itself. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4030 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/ms/TRAnimationExporter.mcr | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ms/TRAnimationExporter.mcr b/src/ms/TRAnimationExporter.mcr index e4f939d9f..ef420ae41 100644 --- a/src/ms/TRAnimationExporter.mcr +++ b/src/ms/TRAnimationExporter.mcr @@ -50,7 +50,9 @@ macroScript TRAnimationExporter category:"File" \ -- Writes a single animation frame fn writeFrame nodes outFile = ( format " \n" to:outFile - writeTransform node outFile + for node in nodes do ( + writeTransform node outFile + ) format " \n\n" to:outFile )