La uno,la due o la tre?
Non sò a dire la verità,però ho trovato questa formuletta:
// Clock Dial Animation
//Seconds Hand
i17 = i17 + ( 0.0002 * oapiGetTimeAcceleration() );
if (i17 < 0) i17 = 0;
if (i17 >= 1)
{
i17 = 0;
i18 = i18 + 0.016666666;
}
SetAnimation (anim_clock_s, i17);
//Minutes Hand
if (i18 < 0) i18 = 0;
if (i18 >= 1)
{
i18 = 0;
i19 = i19 + 0.016666666;
}
SetAnimation (anim_clock_m, i18);
//Hours Hand
if (i19 < 0) i19 = 0;
if (i19 >= 1) i19 = 0;
SetAnimation (anim_clock_h, i19);
Questa è per un "analogico" ma per il digitale non credo cambi tanto
Oppure questo:
http://www.orbithangar.com/searchid.php?ID=2800
Anche una discussione su OF :
http://www.orbiter-forum.com/showthread.php?t=18283&highlight=clock