1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
3	<head>
4		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5		<meta http-equiv="Content-Style-Type" content="text/css" />
6		<title>Animation</title>
7		<link rel="stylesheet" href="../css/mainpage.css" type="text/css" />
8	</head>
9
10	<body>
11
12<h1>Animation</h1>
13
14<h2>Animation Group Descriptor</h2>
15<p>Each collection of one type of animation is called an <I>animation group</I>, and the setting information for that group takes the form of the animation descriptor. The animation target attributes and blend operation names are output to <CODE>&lt;GraphicsAnimationGroupDescription&gt;</CODE>.<br> Models and other animation targets possess sets of groups.  <br> Animations are stored as individual resources by saving them as separate groups in the file.</p>
16
17<h2>Animation descriptors listed under &lt;Model&gt; and &lt;SkeletalModel&gt; elements</h2>
18<h3>Skeletal animation</h3>
19<p>The following is a model with skeletal animation targeting all bones.</p>
20<pre>
21&lt;GraphicsAnimationGroupDescription Name=&quot;SkeletalAnimation&quot; EvaluationTiming=&quot;AfterSceneCulling&quot;&gt;<br>
22	&lt;MemberInformationSet&gt;<br>
23		&lt;AnimationMemberDescription BlendOperationName=&quot;CalculatedTransform&quot;&gt;<br>
24			&lt;Path&gt;Skeleton.Bones[&quot;*&quot;].AnimatedTransform&lt;/Path&gt;<br>
25		&lt;/AnimationMemberDescription&gt;<br>
26	&lt;/MemberInformationSet&gt;<br>
27&lt;/GraphicsAnimationGroupDescription&gt;<br>
28</pre>
29<p>If the animation target was only the one bone named <I>Bone1</I>, the <CODE>&lt;Path&gt;</CODE> would look like this:</p>
30<pre>&lt;Path&gt;Skeleton.Bones[&quot;Bone1&quot;].AnimatedTransform&lt;/Path&gt;</pre>
31<p>For now, please configure your settings for all bones, as was done in the example above.</p>
32
33<h3>Model (visibility) animation</h3>
34<p>Models that include model (visibility) animations are handled as follows.</p>
35
36<pre>
37&lt;GraphicsAnimationGroupDescription Name=&quot;VisibilityAnimation&quot; EvaluationTiming=&quot;BeforeWorldUpdate&quot;&gt;<br>
38	&lt;MemberInformationSet&gt;<br>
39		&lt;AnimationMemberDescription BlendOperationName=&quot;Bool&quot;&gt;<br>
40			&lt;Path&gt;IsVisible&lt;/Path&gt;<br>
41		&lt;/AnimationMemberDescription&gt;<br>
42		&lt;AnimationMemberDescription BlendOperationName=&quot;Bool&quot;&gt;<br>
43			&lt;Path&gt;Meshes[&quot;*&quot;].IsVisible&lt;/Path&gt;<br>
44		&lt;/AnimationMemberDescription&gt;<br>
45		&lt;AnimationMemberDescription BlendOperationName=&quot;Bool&quot;&gt;<br>
46			&lt;Path&gt;IsBranchVisible&lt;/Path&gt;<br>
47		&lt;/AnimationMemberDescription&gt;<br>
48		&lt;AnimationMemberDescription BlendOperationName=&quot;Bool&quot;&gt;<br>
49			&lt;Path&gt;MeshNodeVisibilities[&quot;*&quot;].IsVisible&lt;/Path&gt;<br>
50		&lt;/AnimationMemberDescription&gt;<br>
51	&lt;/MemberInformationSet&gt;<br>
52&lt;/GraphicsAnimationGroupDescription&gt;<br>
53</pre>
54<h3>Material Animation</h3>
55<p>The following is a model with material animation targeting all materials.</p>
56<pre>
57&lt;GraphicsAnimationGroupDescription Name=&quot;MaterialAnimation&quot; EvaluationTiming=&quot;AfterSceneCulling&quot;&gt;<br>
58	&lt;MemberInformationSet&gt;<br>
59		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
60			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Emission&lt;/Path&gt;<br>
61		&lt;/AnimationMemberDescription&gt;<br>
62		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
63			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Ambient&lt;/Path&gt;<br>
64		&lt;/AnimationMemberDescription&gt;<br>
65		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
66			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Diffuse&lt;/Path&gt;<br>
67		&lt;/AnimationMemberDescription&gt;<br>
68		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
69			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Specular0&lt;/Path&gt;<br>
70		&lt;/AnimationMemberDescription&gt;<br>
71		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
72			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Specular1&lt;/Path&gt;<br>
73		&lt;/AnimationMemberDescription&gt;<br>
74		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
75			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Constant0&lt;/Path&gt;<br>
76		&lt;/AnimationMemberDescription&gt;<br>
77		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
78			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Constant1&lt;/Path&gt;<br>
79		&lt;/AnimationMemberDescription&gt;<br>
80		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
81			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Constant2&lt;/Path&gt;<br>
82		&lt;/AnimationMemberDescription&gt;<br>
83		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
84			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Constant3&lt;/Path&gt;<br>
85		&lt;/AnimationMemberDescription&gt;<br>
86		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
87			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Constant4&lt;/Path&gt;<br>
88		&lt;/AnimationMemberDescription&gt;<br>
89		&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
90			&lt;Path&gt;Materials[&quot;*&quot;].MaterialColor.Constant5&lt;/Path&gt;<br>
91		&lt;/AnimationMemberDescription&gt;<br>
92                &lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
93			&lt;Path&gt;Materials[&quot;*&quot;].TextureMappers[&quot;*&quot;].Sampler.BorderColor&lt;/Path&gt;<br>
94		&lt;/AnimationMemberDescription&gt;<br>
95                &lt;AnimationMemberDescription BlendOperationName=&quot;Int&quot;&gt;<br>
96			&lt;Path&gt;Materials[&quot;*&quot;].TextureMappers[&quot;*&quot;].Texture&lt;/Path&gt;<br>
97		&lt;/AnimationMemberDescription&gt;<br>
98                &lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot;&gt;<br>
99			&lt;Path&gt;Materials[&quot;*&quot;].FragmentOperation.BlendOperation.BlendColor&lt;/Path&gt;<br>
100		&lt;/AnimationMemberDescription&gt;<br>
101		&lt;AnimationMemberDescription BlendOperationName=&quot;Vector2&quot;&gt;<br>
102			&lt;Path&gt;Materials[&quot;*&quot;].TextureCoordinators[&quot;*&quot;].Scale&lt;/Path&gt;<br>
103		&lt;/AnimationMemberDescription&gt;<br>
104		&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot;&gt;<br>
105			&lt;Path&gt;Materials[&quot;*&quot;].TextureCoordinators[&quot;*&quot;].Rotate&lt;/Path&gt;<br>
106		&lt;/AnimationMemberDescription&gt;<br>
107		&lt;AnimationMemberDescription BlendOperationName=&quot;Vector2&quot;&gt;<br>
108			&lt;Path&gt;Materials[&quot;*&quot;].TextureCoordinators[&quot;*&quot;].Translate&lt;/Path&gt;<br>
109		&lt;/AnimationMemberDescription&gt;<br>
110	&lt;/MemberInformationSet&gt;<br>
111&lt;/GraphicsAnimationGroupDescription&gt;<br>
112</pre>
113
114<h2>Animation descriptors listed under the &lt;Camera&gt; element</h2>
115<h3>Camera animation</h3>
116<pre>
117&lt;GraphicsAnimationGroupDescription Name=&quot;CameraAnimation&quot; EvaluationTiming=&quot;BeforeWorldUpdate&quot;&gt;<br>
118	&lt;MemberInformationSet&gt;<br>
119		&lt;AnimationMemberDescription BlendOperationName=&quot;Transform&quot; IsBinarized=&quot;true&quot;&gt;<br>
120			&lt;Path&gt;Transform&lt;/Path&gt;<br>
121		&lt;/AnimationMemberDescription&gt;<br>
122		&lt;AnimationMemberDescription BlendOperationName=&quot;Vector3&quot; IsBinarized=&quot;true&quot;&gt;<br>
123			&lt;Path&gt;ViewUpdater.TargetPosition&lt;/Path&gt;<br>
124		&lt;/AnimationMemberDescription&gt;<br>
125		&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
126			&lt;Path&gt;ViewUpdater.Twist&lt;/Path&gt;<br>
127		&lt;/AnimationMemberDescription&gt;<br>
128		&lt;AnimationMemberDescription BlendOperationName=&quot;Vector3&quot; IsBinarized=&quot;true&quot;&gt;<br>
129			&lt;Path&gt;ViewUpdater.UpwardVector&lt;/Path&gt;<br>
130		&lt;/AnimationMemberDescription&gt;<br>
131		&lt;AnimationMemberDescription BlendOperationName=&quot;Vector3&quot; IsBinarized=&quot;true&quot;&gt;<br>
132			&lt;Path&gt;ViewUpdater.ViewRotate&lt;/Path&gt;<br>
133		&lt;/AnimationMemberDescription&gt;<br>
134		&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
135			&lt;Path&gt;ProjectionUpdater.Near&lt;/Path&gt;<br>
136		&lt;/AnimationMemberDescription&gt;<br>
137		&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
138			&lt;Path&gt;ProjectionUpdater.Far&lt;/Path&gt;<br>
139		&lt;/AnimationMemberDescription&gt;<br>
140		&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
141			&lt;Path&gt;ProjectionUpdater.Fovy&lt;/Path&gt;<br>
142		&lt;/AnimationMemberDescription&gt;<br>
143		&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
144			&lt;Path&gt;ProjectionUpdater.AspectRatio&lt;/Path&gt;<br>
145		&lt;/AnimationMemberDescription&gt;<br>
146		&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
147			&lt;Path&gt;ProjectionUpdater.Height&lt;/Path&gt;<br>
148		&lt;/AnimationMemberDescription&gt;<br>
149	&lt;/MemberInformationSet&gt;<br>
150&lt;/GraphicsAnimationGroupDescription&gt;<br>
151</pre>
152
153<h2>Animation descriptors listed under the &lt;Light&gt; element</h2>
154<h3>&lt;FragmentLightCtr&gt; (Fragment Light) Animation Descriptors</h3>
155<pre>
156&lt;AnimationGroupDescriptions&gt;<br>
157	&lt;GraphicsAnimationGroupDescription Name=&quot;LightAnimation&quot; EvaluationTiming=&quot;BeforeWorldUpdate&quot;&gt;<br>
158		&lt;MemberInformationSet&gt;<br>
159			&lt;AnimationMemberDescription BlendOperationName=&quot;Transform&quot; IsBinarized=&quot;true&quot;&gt;<br>
160				&lt;Path&gt;Transform&lt;/Path&gt;<br>
161			&lt;/AnimationMemberDescription&gt;<br>
162			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
163				&lt;Path&gt;Ambient&lt;/Path&gt;<br>
164			&lt;/AnimationMemberDescription&gt;<br>
165			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
166				&lt;Path&gt;Diffuse&lt;/Path&gt;<br>
167			&lt;/AnimationMemberDescription&gt;<br>
168			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
169				&lt;Path&gt;Specular0&lt;/Path&gt;<br>
170			&lt;/AnimationMemberDescription&gt;<br>
171			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
172				&lt;Path&gt;Specular1&lt;/Path&gt;<br>
173			&lt;/AnimationMemberDescription&gt;<br>
174			&lt;AnimationMemberDescription BlendOperationName=&quot;Vector3&quot; IsBinarized=&quot;true&quot;&gt;<br>
175				&lt;Path&gt;Direction&lt;/Path&gt;<br>
176			&lt;/AnimationMemberDescription&gt;<br>
177			&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
178				&lt;Path&gt;DistanceAttenuationStart&lt;/Path&gt;<br>
179			&lt;/AnimationMemberDescription&gt;<br>
180			&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
181				&lt;Path&gt;DistanceAttenuationEnd&lt;/Path&gt;<br>
182			&lt;/AnimationMemberDescription&gt;<br>
183			&lt;AnimationMemberDescription BlendOperationName=&quot;Bool&quot; IsBinarized=&quot;true&quot;&gt;<br>
184				&lt;Path&gt;IsLightEnabled&lt;/Path&gt;<br>
185			&lt;/AnimationMemberDescription&gt;<br>
186		&lt;/MemberInformationSet&gt;<br>
187	&lt;/GraphicsAnimationGroupDescription&gt;<br>
188&lt;/AnimationGroupDescriptions&gt;<br>
189</pre>
190
191<h3>&lt;AmbientLightCtr&gt; (Ambient Light) Animation Descriptors</h3>
192<pre>
193&lt;AnimationGroupDescriptions&gt;<br>
194	&lt;GraphicsAnimationGroupDescription Name=&quot;LightAnimation&quot; EvaluationTiming=&quot;BeforeWorldUpdate&quot;&gt;<br>
195		&lt;MemberInformationSet&gt;<br>
196			&lt;AnimationMemberDescription BlendOperationName=&quot;Transform&quot; IsBinarized=&quot;true&quot;&gt;<br>
197				&lt;Path&gt;Transform&lt;/Path&gt;<br>
198			&lt;/AnimationMemberDescription&gt;<br>
199			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
200				&lt;Path&gt;Ambient&lt;/Path&gt;<br>
201			&lt;/AnimationMemberDescription&gt;<br>
202			&lt;AnimationMemberDescription BlendOperationName=&quot;Bool&quot; IsBinarized=&quot;true&quot;&gt;<br>
203				&lt;Path&gt;IsLightEnabled&lt;/Path&gt;<br>
204			&lt;/AnimationMemberDescription&gt;<br>
205		&lt;/MemberInformationSet&gt;<br>
206	&lt;/GraphicsAnimationGroupDescription&gt;<br>
207&lt;/AnimationGroupDescriptions&gt;<br>
208</pre>
209
210<h3>&lt;VertexLightCtr&gt; (VertexLight) Animation Descriptors</h3>
211<pre>
212&lt;AnimationGroupDescriptions&gt;<br>
213	&lt;GraphicsAnimationGroupDescription Name=&quot;LightAnimation&quot; EvaluationTiming=&quot;BeforeWorldUpdate&quot;&gt;<br>
214		&lt;MemberInformationSet&gt;<br>
215			&lt;AnimationMemberDescription BlendOperationName=&quot;Transform&quot; IsBinarized=&quot;true&quot;&gt;<br>
216				&lt;Path&gt;Transform&lt;/Path&gt;<br>
217			&lt;/AnimationMemberDescription&gt;<br>
218			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
219				&lt;Path&gt;Ambient&lt;/Path&gt;<br>
220			&lt;/AnimationMemberDescription&gt;<br>
221			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
222				&lt;Path&gt;Diffuse&lt;/Path&gt;<br>
223			&lt;/AnimationMemberDescription&gt;<br>
224			&lt;AnimationMemberDescription BlendOperationName=&quot;Vector3&quot; IsBinarized=&quot;true&quot;&gt;<br>
225				&lt;Path&gt;Direction&lt;/Path&gt;<br>
226			&lt;/AnimationMemberDescription&gt;<br>
227			&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
228				&lt;Path&gt;DistanceAttenuationConstant&lt;/Path&gt;<br>
229			&lt;/AnimationMemberDescription&gt;<br>
230			&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
231				&lt;Path&gt;DistanceAttenuationLinear&lt;/Path&gt;<br>
232			&lt;/AnimationMemberDescription&gt;<br>
233			&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
234				&lt;Path&gt;DistanceAttenuationQuadratic&lt;/Path&gt;<br>
235			&lt;/AnimationMemberDescription&gt;<br>
236			&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
237				&lt;Path&gt;SpotExponent&lt;/Path&gt;<br>
238			&lt;/AnimationMemberDescription&gt;<br>
239			&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
240				&lt;Path&gt;SpotCutoffAngle&lt;/Path&gt;<br>
241			&lt;/AnimationMemberDescription&gt;<br>
242			&lt;AnimationMemberDescription BlendOperationName=&quot;Bool&quot; IsBinarized=&quot;true&quot;&gt;<br>
243				&lt;Path&gt;IsLightEnabled&lt;/Path&gt;<br>
244			&lt;/AnimationMemberDescription&gt;<br>
245		&lt;/MemberInformationSet&gt;<br>
246	&lt;/GraphicsAnimationGroupDescription&gt;<br>
247&lt;/AnimationGroupDescriptions&gt;<br>
248</pre>
249
250<h3>&lt;HemiSphereLightCtr&gt; (Hemispherical Light) Animation Descriptors</h3>
251<pre>
252&lt;AnimationGroupDescriptions&gt;<br>
253	&lt;GraphicsAnimationGroupDescription Name=&quot;LightAnimation&quot; EvaluationTiming=&quot;BeforeWorldUpdate&quot;&gt;<br>
254		&lt;MemberInformationSet&gt;<br>
255			&lt;AnimationMemberDescription BlendOperationName=&quot;Transform&quot; IsBinarized=&quot;true&quot;&gt;<br>
256				&lt;Path&gt;Transform&lt;/Path&gt;<br>
257			&lt;/AnimationMemberDescription&gt;<br>
258			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
259				&lt;Path&gt;GroundColor&lt;/Path&gt;<br>
260			&lt;/AnimationMemberDescription&gt;<br>
261			&lt;AnimationMemberDescription BlendOperationName=&quot;RgbaColor&quot; IsBinarized=&quot;true&quot;&gt;<br>
262				&lt;Path&gt;SkyColor&lt;/Path&gt;<br>
263			&lt;/AnimationMemberDescription&gt;<br>
264			&lt;AnimationMemberDescription BlendOperationName=&quot;Vector3&quot; IsBinarized=&quot;true&quot;&gt;<br>
265				&lt;Path&gt;Direction&lt;/Path&gt;<br>
266			&lt;/AnimationMemberDescription&gt;<br>
267			&lt;AnimationMemberDescription BlendOperationName=&quot;Float&quot; IsBinarized=&quot;true&quot;&gt;<br>
268				&lt;Path&gt;LerpFactor&lt;/Path&gt;<br>
269			&lt;/AnimationMemberDescription&gt;<br>
270			&lt;AnimationMemberDescription BlendOperationName=&quot;Bool&quot; IsBinarized=&quot;true&quot;&gt;<br>
271				&lt;Path&gt;IsLightEnabled&lt;/Path&gt;<br>
272			&lt;/AnimationMemberDescription&gt;<br>
273		&lt;/MemberInformationSet&gt;<br>
274	&lt;/GraphicsAnimationGroupDescription&gt;<br>
275&lt;/AnimationGroupDescriptions&gt;<br>
276</pre>
277
278<h2>Rules for Outputting Animation Curves</h2>
279<p>For bones influenced by skinning, an animation curve whose value does not change is not output if the value is the same as in the <CODE>.cmdl</CODE> file (i.e., the value is the same as the bind pose). </p>
280<p>For bones which are not influenced by skinning, even animation curves with values that do not change are output if settings have been configured for items like keys, IKs and constraints.</p>
281<p>For an animation curve with unchanging value, data are only output for one <CODE>&lt;LinearFloatKey&gt;</CODE>, as shown below:</p>
282<pre>
283&lt;XSegmentsFloatCurve PreRepeatMethod=&quot;None&quot; PostRepeatMethod=&quot;None&quot; StartFrame=&quot;0&quot; EndFrame=&quot;0&quot;&gt;<br>
284	&lt;Segments&gt;<br>
285		&lt;LinearFloatSegment&gt;<br>
286			&lt;Keys&gt;<br>
287				&lt;LinearFloatKey Frame=&quot;0&quot; Value=&quot;0&quot; /&gt;<br>
288			&lt;/Keys&gt;<br>
289		&lt;/LinearFloatSegment&gt;<br>
290	&lt;/Segments&gt;<br>
291&lt;/XSegmentsFloatCurve&gt;<br>
292</pre>
293<p>In the case of skeletal animation, <CODE>&lt;MemberAnimationData&gt;</CODE> is not output for bones for which animation curves for Translate, Rotate and Scale are not all output.<br> However, for bones influenced by skinning, if settings have been configured for items like keys, IKs and constraints, then <CODE>&lt;MemberAnimationData&gt;</CODE> without animation curves is output, as shown below.  In this state, the values in the <CODE>.cmdl</CODE> file are used for all translations, rotations and scaling.</p>
294<pre>
295&lt;MemberAnimationData&gt;<br>
296	&lt;Path&gt;Skeleton.Bones[&quot;Bone1&quot;].AnimatedTransform&lt;/Path&gt;<br>
297	&lt;TransformAnimation /&gt;<br>
298&lt;/MemberAnimationData&gt;<br>
299</pre>
300
301<p><br><br><br><br></p>
302
303	<hr><p>CONFIDENTIAL</p></body>
304</html>
305