lengthen spin transition and add some wiggling

This commit is contained in:
Mike Blumenkrantz 2013-07-31 09:28:35 +01:00 committed by discomfitor
parent 72815d0f72
commit 449553cbdf
1 changed files with 7 additions and 5 deletions

View File

@ -546,14 +546,16 @@ collections {
} }
description { state: "rotated" 0.0; description { state: "rotated" 0.0;
inherit: "visible" 0.0; inherit: "visible" 0.0;
rel1.offset: 50 50;
rel1.to: "";
rel2.offset: 50 50;
rel2.to: "";
map.rotation.z: 360; map.rotation.z: 360;
} }
} }
part { name: "bell_overlay"; type: RECT; part { name: "bell_overlay"; type: RECT;
mouse_events: 0; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
color: 255 255 255 255; color: 255 255 255 255;
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
@ -568,14 +570,14 @@ collections {
program { program {
signal: "bell"; source: "terminology"; signal: "bell"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
transition: SINUSOIDAL 0.1; transition: SINUSOIDAL 0.15;
target: "bell_overlay"; target: "bell_overlay";
after: "bell_overlay2"; after: "bell_overlay2";
} }
program { program {
name: "bell_overlay2"; name: "bell_overlay2";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.1; transition: SINUSOIDAL 0.15;
target: "bell_overlay"; target: "bell_overlay";
} }
program { program {
@ -586,7 +588,7 @@ collections {
} }
program { name: "bell_proxy2"; program { name: "bell_proxy2";
action: STATE_SET "rotated" 0.0; action: STATE_SET "rotated" 0.0;
transition: DECELERATE 0.2; transition: ACCELERATE 0.3;
target: "bell_proxy"; target: "bell_proxy";
after: "bell_proxy3"; after: "bell_proxy3";
} }