pikalogy
pikalogy copied to clipboard
Animation speed
Hi, How can I modify the animation speed?
Hi,
I believe you need to modify code around here.
It's been a while since I have not written edje, but, IIRC, the second parameter to transition
is the duration. So, in the following code snippet, 0.7 second separate two "standby" frames
program { name: "pika_wave";
action: STATE_SET "anim1" 0.0;
transition: LINEAR 0.7; // <----- replacing 0.7 with something else should do the trick
target: "pika";
after: "pika_wave";
}
Other animations are here and there.
I have not tried this change myself, as I don't have an EFL dev environment around. Please let me know if this does not solve your issue :)
Hi, Thanks now gengar animated correctly I turned it from 0.7 to 2.6 to make it animating correctly. about the the lighting they are not showing up the waking is working the sleep is working too thanks again.