File size: 868 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 |
// -----------------------------------------------------------
class Bouncer
{
reference float amount;
reference float speed;
protected float m_orginal_width;
protected float m_orginal_height;
protected Widget m_root;
protected ref AnimatorTimer m_anim;
// -----------------------------------------------------------
void Bouncer()
{
m_anim = new AnimatorTimer();
}
// -----------------------------------------------------------
protected void Update()
{
Print("Update");
if (m_root)
{
float p = amount * m_anim.GetValue();
m_root.SetSize(m_orginal_width + (m_orginal_width * p), m_orginal_height - (m_orginal_height * p));
}
}
// -----------------------------------------------------------
void OnWidgetScriptInit(Widget w)
{
m_root = w;
m_root.GetSize(m_orginal_width, m_orginal_height);
m_anim.AnimateLoop(speed);
}
}; |