summaryrefslogtreecommitdiff
path: root/doc/classes/Animation.xml
blob: d9a1f896f162303249a3019b3a4cebd5a8d96d9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Animation" inherits="Resource" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		Contains data used to animate everything in the engine.
	</brief_description>
	<description>
		An Animation resource contains data used to animate everything in the engine. Animations are divided into tracks, and each track must be linked to a node. The state of that node can be changed through time, by adding timed keys (events) to the track.
		[codeblocks]
		[gdscript]
		# This creates an animation that makes the node "Enemy" move to the right by
		# 100 pixels in 0.5 seconds.
		var animation = Animation.new()
		var track_index = animation.add_track(Animation.TYPE_VALUE)
		animation.track_set_path(track_index, "Enemy:position:x")
		animation.track_insert_key(track_index, 0.0, 0)
		animation.track_insert_key(track_index, 0.5, 100)
		[/gdscript]
		[csharp]
		// This creates an animation that makes the node "Enemy" move to the right by
		// 100 pixels in 0.5 seconds.
		var animation = new Animation();
		int trackIndex = animation.AddTrack(Animation.TrackType.Value);
		animation.TrackSetPath(trackIndex, "Enemy:position:x");
		animation.TrackInsertKey(trackIndex, 0.0f, 0);
		animation.TrackInsertKey(trackIndex, 0.5f, 100);
		[/csharp]
		[/codeblocks]
		Animations are just data containers, and must be added to nodes such as an [AnimationPlayer] to be played back. Animation tracks have different types, each with its own set of dedicated methods. Check [enum TrackType] to see available types.
		[b]Note:[/b] For 3D position/rotation/scale, using the dedicated [constant TYPE_POSITION_3D], [constant TYPE_ROTATION_3D] and [constant TYPE_SCALE_3D] track types instead of [constant TYPE_VALUE] is recommended for performance reasons.
	</description>
	<tutorials>
		<link title="Animation documentation index">$DOCS_URL/tutorials/animation/index.html</link>
	</tutorials>
	<methods>
		<method name="add_track">
			<return type="int" />
			<param index="0" name="type" type="int" enum="Animation.TrackType" />
			<param index="1" name="at_position" type="int" default="-1" />
			<description>
				Adds a track to the Animation.
			</description>
		</method>
		<method name="animation_track_get_key_animation" qualifiers="const">
			<return type="StringName" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the animation name at the key identified by [param key_idx]. The [param track_idx] must be the index of an Animation Track.
			</description>
		</method>
		<method name="animation_track_insert_key">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="animation" type="StringName" />
			<description>
				Inserts a key with value [param animation] at the given [param time] (in seconds). The [param track_idx] must be the index of an Animation Track.
			</description>
		</method>
		<method name="animation_track_set_key_animation">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="animation" type="StringName" />
			<description>
				Sets the key identified by [param key_idx] to value [param animation]. The [param track_idx] must be the index of an Animation Track.
			</description>
		</method>
		<method name="audio_track_get_key_end_offset" qualifiers="const">
			<return type="float" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the end offset of the key identified by [param key_idx]. The [param track_idx] must be the index of an Audio Track.
				End offset is the number of seconds cut off at the ending of the audio stream.
			</description>
		</method>
		<method name="audio_track_get_key_start_offset" qualifiers="const">
			<return type="float" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the start offset of the key identified by [param key_idx]. The [param track_idx] must be the index of an Audio Track.
				Start offset is the number of seconds cut off at the beginning of the audio stream.
			</description>
		</method>
		<method name="audio_track_get_key_stream" qualifiers="const">
			<return type="Resource" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the audio stream of the key identified by [param key_idx]. The [param track_idx] must be the index of an Audio Track.
			</description>
		</method>
		<method name="audio_track_insert_key">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="stream" type="Resource" />
			<param index="3" name="start_offset" type="float" default="0" />
			<param index="4" name="end_offset" type="float" default="0" />
			<description>
				Inserts an Audio Track key at the given [param time] in seconds. The [param track_idx] must be the index of an Audio Track.
				[param stream] is the [AudioStream] resource to play. [param start_offset] is the number of seconds cut off at the beginning of the audio stream, while [param end_offset] is at the ending.
			</description>
		</method>
		<method name="audio_track_set_key_end_offset">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="offset" type="float" />
			<description>
				Sets the end offset of the key identified by [param key_idx] to value [param offset]. The [param track_idx] must be the index of an Audio Track.
			</description>
		</method>
		<method name="audio_track_set_key_start_offset">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="offset" type="float" />
			<description>
				Sets the start offset of the key identified by [param key_idx] to value [param offset]. The [param track_idx] must be the index of an Audio Track.
			</description>
		</method>
		<method name="audio_track_set_key_stream">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="stream" type="Resource" />
			<description>
				Sets the stream of the key identified by [param key_idx] to value [param stream]. The [param track_idx] must be the index of an Audio Track.
			</description>
		</method>
		<method name="bezier_track_get_key_in_handle" qualifiers="const">
			<return type="Vector2" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the in handle of the key identified by [param key_idx]. The [param track_idx] must be the index of a Bezier Track.
			</description>
		</method>
		<method name="bezier_track_get_key_out_handle" qualifiers="const">
			<return type="Vector2" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the out handle of the key identified by [param key_idx]. The [param track_idx] must be the index of a Bezier Track.
			</description>
		</method>
		<method name="bezier_track_get_key_value" qualifiers="const">
			<return type="float" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the value of the key identified by [param key_idx]. The [param track_idx] must be the index of a Bezier Track.
			</description>
		</method>
		<method name="bezier_track_insert_key">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="value" type="float" />
			<param index="3" name="in_handle" type="Vector2" default="Vector2(0, 0)" />
			<param index="4" name="out_handle" type="Vector2" default="Vector2(0, 0)" />
			<description>
				Inserts a Bezier Track key at the given [param time] in seconds. The [param track_idx] must be the index of a Bezier Track.
				[param in_handle] is the left-side weight of the added Bezier curve point, [param out_handle] is the right-side one, while [param value] is the actual value at this point.
			</description>
		</method>
		<method name="bezier_track_interpolate" qualifiers="const">
			<return type="float" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<description>
				Returns the interpolated value at the given [param time] (in seconds). The [param track_idx] must be the index of a Bezier Track.
			</description>
		</method>
		<method name="bezier_track_set_key_in_handle">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="in_handle" type="Vector2" />
			<param index="3" name="balanced_value_time_ratio" type="float" default="1.0" />
			<description>
				Sets the in handle of the key identified by [param key_idx] to value [param in_handle]. The [param track_idx] must be the index of a Bezier Track.
			</description>
		</method>
		<method name="bezier_track_set_key_out_handle">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="out_handle" type="Vector2" />
			<param index="3" name="balanced_value_time_ratio" type="float" default="1.0" />
			<description>
				Sets the out handle of the key identified by [param key_idx] to value [param out_handle]. The [param track_idx] must be the index of a Bezier Track.
			</description>
		</method>
		<method name="bezier_track_set_key_value">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="value" type="float" />
			<description>
				Sets the value of the key identified by [param key_idx] to the given value. The [param track_idx] must be the index of a Bezier Track.
			</description>
		</method>
		<method name="blend_shape_track_insert_key">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="amount" type="float" />
			<description>
				Inserts a key in a given blend shape track. Returns the key index.
			</description>
		</method>
		<method name="clear">
			<return type="void" />
			<description>
				Clear the animation (clear all tracks and reset all).
			</description>
		</method>
		<method name="compress">
			<return type="void" />
			<param index="0" name="page_size" type="int" default="8192" />
			<param index="1" name="fps" type="int" default="120" />
			<param index="2" name="split_tolerance" type="float" default="4.0" />
			<description>
				Compress the animation and all its tracks in-place. This will make [method track_is_compressed] return [code]true[/code] once called on this [Animation]. Compressed tracks require less memory to be played, and are designed to be used for complex 3D animations (such as cutscenes) imported from external 3D software. Compression is lossy, but the difference is usually not noticeable in real world conditions.
				[b]Note:[/b] Compressed tracks have various limitations (such as not being editable from the editor), so only use compressed animations if you actually need them.
			</description>
		</method>
		<method name="copy_track">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="to_animation" type="Animation" />
			<description>
				Adds a new track that is a copy of the given track from [param to_animation].
			</description>
		</method>
		<method name="find_track" qualifiers="const">
			<return type="int" />
			<param index="0" name="path" type="NodePath" />
			<param index="1" name="type" type="int" enum="Animation.TrackType" />
			<description>
				Returns the index of the specified track. If the track is not found, return -1.
			</description>
		</method>
		<method name="get_track_count" qualifiers="const">
			<return type="int" />
			<description>
				Returns the amount of tracks in the animation.
			</description>
		</method>
		<method name="method_track_get_name" qualifiers="const">
			<return type="StringName" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the method name of a method track.
			</description>
		</method>
		<method name="method_track_get_params" qualifiers="const">
			<return type="Array" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the arguments values to be called on a method track for a given key in a given track.
			</description>
		</method>
		<method name="position_track_insert_key">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="position" type="Vector3" />
			<description>
				Inserts a key in a given 3D position track. Returns the key index.
			</description>
		</method>
		<method name="remove_track">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Removes a track by specifying the track index.
			</description>
		</method>
		<method name="rotation_track_insert_key">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="rotation" type="Quaternion" />
			<description>
				Inserts a key in a given 3D rotation track. Returns the key index.
			</description>
		</method>
		<method name="scale_track_insert_key">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="scale" type="Vector3" />
			<description>
				Inserts a key in a given 3D scale track. Returns the key index.
			</description>
		</method>
		<method name="track_find_key" qualifiers="const">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="exact" type="bool" default="false" />
			<description>
				Finds the key index by time in a given track. Optionally, only find it if the exact time is given.
			</description>
		</method>
		<method name="track_get_interpolation_loop_wrap" qualifiers="const">
			<return type="bool" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Returns [code]true[/code] if the track at [param track_idx] wraps the interpolation loop. New tracks wrap the interpolation loop by default.
			</description>
		</method>
		<method name="track_get_interpolation_type" qualifiers="const">
			<return type="int" enum="Animation.InterpolationType" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Returns the interpolation type of a given track.
			</description>
		</method>
		<method name="track_get_key_count" qualifiers="const">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Returns the number of keys in a given track.
			</description>
		</method>
		<method name="track_get_key_time" qualifiers="const">
			<return type="float" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the time at which the key is located.
			</description>
		</method>
		<method name="track_get_key_transition" qualifiers="const">
			<return type="float" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the transition curve (easing) for a specific key (see the built-in math function [method @GlobalScope.ease]).
			</description>
		</method>
		<method name="track_get_key_value" qualifiers="const">
			<return type="Variant" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Returns the value of a given key in a given track.
			</description>
		</method>
		<method name="track_get_path" qualifiers="const">
			<return type="NodePath" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Gets the path of a track. For more information on the path format, see [method track_set_path].
			</description>
		</method>
		<method name="track_get_type" qualifiers="const">
			<return type="int" enum="Animation.TrackType" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Gets the type of a track.
			</description>
		</method>
		<method name="track_insert_key">
			<return type="int" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<param index="2" name="key" type="Variant" />
			<param index="3" name="transition" type="float" default="1" />
			<description>
				Inserts a generic key in a given track. Returns the key index.
			</description>
		</method>
		<method name="track_is_compressed" qualifiers="const">
			<return type="bool" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Returns [code]true[/code] if the track is compressed, [code]false[/code] otherwise. See also [method compress].
			</description>
		</method>
		<method name="track_is_enabled" qualifiers="const">
			<return type="bool" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Returns [code]true[/code] if the track at index [param track_idx] is enabled.
			</description>
		</method>
		<method name="track_is_imported" qualifiers="const">
			<return type="bool" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Returns [code]true[/code] if the given track is imported. Else, return [code]false[/code].
			</description>
		</method>
		<method name="track_move_down">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Moves a track down.
			</description>
		</method>
		<method name="track_move_to">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="to_idx" type="int" />
			<description>
				Changes the index position of track [param track_idx] to the one defined in [param to_idx].
			</description>
		</method>
		<method name="track_move_up">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Moves a track up.
			</description>
		</method>
		<method name="track_remove_key">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<description>
				Removes a key by index in a given track.
			</description>
		</method>
		<method name="track_remove_key_at_time">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time" type="float" />
			<description>
				Removes a key at [param time] in a given track.
			</description>
		</method>
		<method name="track_set_enabled">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="enabled" type="bool" />
			<description>
				Enables/disables the given track. Tracks are enabled by default.
			</description>
		</method>
		<method name="track_set_imported">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="imported" type="bool" />
			<description>
				Sets the given track as imported or not.
			</description>
		</method>
		<method name="track_set_interpolation_loop_wrap">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="interpolation" type="bool" />
			<description>
				If [code]true[/code], the track at [param track_idx] wraps the interpolation loop.
			</description>
		</method>
		<method name="track_set_interpolation_type">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="interpolation" type="int" enum="Animation.InterpolationType" />
			<description>
				Sets the interpolation type of a given track.
			</description>
		</method>
		<method name="track_set_key_time">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="time" type="float" />
			<description>
				Sets the time of an existing key.
			</description>
		</method>
		<method name="track_set_key_transition">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key_idx" type="int" />
			<param index="2" name="transition" type="float" />
			<description>
				Sets the transition curve (easing) for a specific key (see the built-in math function [method @GlobalScope.ease]).
			</description>
		</method>
		<method name="track_set_key_value">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="key" type="int" />
			<param index="2" name="value" type="Variant" />
			<description>
				Sets the value of an existing key.
			</description>
		</method>
		<method name="track_set_path">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="path" type="NodePath" />
			<description>
				Sets the path of a track. Paths must be valid scene-tree paths to a node and must be specified starting from the parent node of the node that will reproduce the animation. Tracks that control properties or bones must append their name after the path, separated by [code]":"[/code].
				For example, [code]"character/skeleton:ankle"[/code] or [code]"character/mesh:transform/local"[/code].
			</description>
		</method>
		<method name="track_swap">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="with_idx" type="int" />
			<description>
				Swaps the track [param track_idx]'s index position with the track [param with_idx].
			</description>
		</method>
		<method name="value_track_get_update_mode" qualifiers="const">
			<return type="int" enum="Animation.UpdateMode" />
			<param index="0" name="track_idx" type="int" />
			<description>
				Returns the update mode of a value track.
			</description>
		</method>
		<method name="value_track_interpolate" qualifiers="const">
			<return type="Variant" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="time_sec" type="float" />
			<description>
				Returns the interpolated value at the given time (in seconds). The [param track_idx] must be the index of a value track.
			</description>
		</method>
		<method name="value_track_set_update_mode">
			<return type="void" />
			<param index="0" name="track_idx" type="int" />
			<param index="1" name="mode" type="int" enum="Animation.UpdateMode" />
			<description>
				Sets the update mode (see [enum UpdateMode]) of a value track.
			</description>
		</method>
	</methods>
	<members>
		<member name="length" type="float" setter="set_length" getter="get_length" default="1.0">
			The total length of the animation (in seconds).
			[b]Note:[/b] Length is not delimited by the last key, as this one may be before or after the end to ensure correct interpolation and looping.
		</member>
		<member name="loop_mode" type="int" setter="set_loop_mode" getter="get_loop_mode" enum="Animation.LoopMode" default="0">
			Determines the behavior of both ends of the animation timeline during animation playback. This is used for correct interpolation of animation cycles, and for hinting the player that it must restart the animation.
		</member>
		<member name="step" type="float" setter="set_step" getter="get_step" default="0.1">
			The animation step value.
		</member>
	</members>
	<constants>
		<constant name="TYPE_VALUE" value="0" enum="TrackType">
			Value tracks set values in node properties, but only those which can be interpolated. For 3D position/rotation/scale, using the dedicated [constant TYPE_POSITION_3D], [constant TYPE_ROTATION_3D] and [constant TYPE_SCALE_3D] track types instead of [constant TYPE_VALUE] is recommended for performance reasons.
		</constant>
		<constant name="TYPE_POSITION_3D" value="1" enum="TrackType">
			3D position track (values are stored in [Vector3]s).
		</constant>
		<constant name="TYPE_ROTATION_3D" value="2" enum="TrackType">
			3D rotation track (values are stored in [Quaternion]s).
		</constant>
		<constant name="TYPE_SCALE_3D" value="3" enum="TrackType">
			3D scale track (values are stored in [Vector3]s).
		</constant>
		<constant name="TYPE_BLEND_SHAPE" value="4" enum="TrackType">
			Blend shape track.
		</constant>
		<constant name="TYPE_METHOD" value="5" enum="TrackType">
			Method tracks call functions with given arguments per key.
		</constant>
		<constant name="TYPE_BEZIER" value="6" enum="TrackType">
			Bezier tracks are used to interpolate a value using custom curves. They can also be used to animate sub-properties of vectors and colors (e.g. alpha value of a [Color]).
		</constant>
		<constant name="TYPE_AUDIO" value="7" enum="TrackType">
			Audio tracks are used to play an audio stream with either type of [AudioStreamPlayer]. The stream can be trimmed and previewed in the animation.
		</constant>
		<constant name="TYPE_ANIMATION" value="8" enum="TrackType">
			Animation tracks play animations in other [AnimationPlayer] nodes.
		</constant>
		<constant name="INTERPOLATION_NEAREST" value="0" enum="InterpolationType">
			No interpolation (nearest value).
		</constant>
		<constant name="INTERPOLATION_LINEAR" value="1" enum="InterpolationType">
			Linear interpolation.
		</constant>
		<constant name="INTERPOLATION_CUBIC" value="2" enum="InterpolationType">
			Cubic interpolation. This looks smoother than linear interpolation, but is more expensive to interpolate. Stick to [constant INTERPOLATION_LINEAR] for complex 3D animations imported from external software, even if it requires using a higher animation framerate in return.
		</constant>
		<constant name="INTERPOLATION_LINEAR_ANGLE" value="3" enum="InterpolationType">
			Linear interpolation with shortest path rotation.
			[b]Note:[/b] The result value is always normalized and may not match the key value.
		</constant>
		<constant name="INTERPOLATION_CUBIC_ANGLE" value="4" enum="InterpolationType">
			Cubic interpolation with shortest path rotation.
			[b]Note:[/b] The result value is always normalized and may not match the key value.
		</constant>
		<constant name="UPDATE_CONTINUOUS" value="0" enum="UpdateMode">
			Update between keyframes and hold the value.
		</constant>
		<constant name="UPDATE_DISCRETE" value="1" enum="UpdateMode">
			Update at the keyframes.
		</constant>
		<constant name="UPDATE_CAPTURE" value="2" enum="UpdateMode">
			Same as linear interpolation, but also interpolates from the current value (i.e. dynamically at runtime) if the first key isn't at 0 seconds.
		</constant>
		<constant name="LOOP_NONE" value="0" enum="LoopMode">
			At both ends of the animation, the animation will stop playing.
		</constant>
		<constant name="LOOP_LINEAR" value="1" enum="LoopMode">
			At both ends of the animation, the animation will be repeated without changing the playback direction.
		</constant>
		<constant name="LOOP_PINGPONG" value="2" enum="LoopMode">
			Repeats playback and reverse playback at both ends of the animation.
		</constant>
		<constant name="LOOPED_FLAG_NONE" value="0" enum="LoopedFlag">
			This flag indicates that the animation proceeds without any looping.
		</constant>
		<constant name="LOOPED_FLAG_END" value="1" enum="LoopedFlag">
			This flag indicates that the animation has reached the end of the animation and just after loop processed.
		</constant>
		<constant name="LOOPED_FLAG_START" value="2" enum="LoopedFlag">
			This flag indicates that the animation has reached the start of the animation and just after loop processed.
		</constant>
	</constants>
</class>