File size: 1,266 Bytes
24b81cb |
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 |
// -----------------------------------------------------------
class HoverEffect : ScriptedWidgetEventHandler
{
reference float speed;
reference float amount;
protected float m_orginal_width;
protected float m_orginal_height;
protected Widget m_root;
protected ref AnimatorTimer m_anim;
void HoverEffect()
{
m_anim = new AnimatorTimer();
}
// -----------------------------------------------------------
void OnWidgetScriptInit(Widget w)
{
m_root = w;
m_root.SetHandler(this);
}
// -----------------------------------------------------------
protected void Update()
{
float p = amount * m_anim.GetValue();
m_root.SetSize(m_orginal_width + (m_orginal_width * p), m_orginal_height + (m_orginal_height * p));
float c = 1.0 - (0.5 * m_anim.GetValue());
m_root.SetColor(ARGBF(1, 1, c, c));
}
// -----------------------------------------------------------
override bool OnMouseEnter(Widget w, int x, int y)
{
if ( !m_anim.IsRunning() ) m_root.GetSize(m_orginal_width, m_orginal_height);
m_anim.Animate(1.0, speed);
return false;
}
// -----------------------------------------------------------
override bool OnMouseLeave(Widget w, Widget enterW, int x, int y)
{
m_anim.Animate(0.0, speed);
return false;
}
}; |