enventor/data/templates/Rotation+Zoom.edc

43 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-05-30 09:17:51 -07:00
collections {
2015-08-10 19:56:01 -07:00
base_scale: 1.0;
group { "main";
/* TODO: Please replace embedded image files to your application image files. */
images {
2016-05-25 09:59:42 -07:00
image: "ENVENTOR_EMBEDDED_IMAGE.png" COMP;
}
2015-05-30 09:17:51 -07:00
parts {
image { "logo";
desc { "default";
2015-08-11 06:20:53 -07:00
/* TODO: Please replace embedded image files to your application image files. */
2016-05-25 09:59:42 -07:00
image.normal: "ENVENTOR_EMBEDDED_IMAGE.png";
2015-05-30 09:17:51 -07:00
aspect: 1 1;
aspect_preference: BOTH;
map.on: 1;
}
desc { "rotated";
inherit: "default";
2015-05-30 09:43:53 -07:00
map {
rotation.z: 360;
zoom.x: 0.25;
zoom.y: 0.25;
}
2015-05-30 09:17:51 -07:00
}
}
}
programs {
program { "anim1";
2015-05-30 09:17:51 -07:00
signal: "load";
action: STATE_SET "rotated";
2015-05-30 09:17:51 -07:00
target: "logo";
transition: ACCELERATE 2;
after: "anim2";
}
program { "anim2";
action: STATE_SET "default";
2015-05-30 09:17:51 -07:00
target: "logo";
transition: ACCELERATE 2.0;
after: "anim1";
}
}
}
}