4dd11d6915
The whole point of having the Animator class is that the developer can describe a complex animation using ClutterScript. Hence, ClutterAnimator should hook into the Script machinery and parse a specific description format for its keys.
22 lines
444 B
Makefile
22 lines
444 B
Makefile
NULL =
|
|
|
|
json_files = \
|
|
test-script-animation.json \
|
|
test-script-child.json \
|
|
test-script-implicit-alpha.json \
|
|
test-script.json \
|
|
test-script-named-object.json \
|
|
test-script-object-property.json \
|
|
test-script-single.json \
|
|
test-animator-1.json \
|
|
test-animator-2.json \
|
|
$(NULL)
|
|
|
|
png_files = \
|
|
redhand.png \
|
|
redhand_alpha.png \
|
|
light0.png \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = $(json_files) $(png_files) clutter-1.0.suppressions
|