Bonjour, je veux relever un panneau solaire de 0 à 90°.
sur ce panneau 2 autres qui suivent et doivent s'ouvrir arrivé à 90°.
J'écris ça :
static UINT PanSolHautDroit[3] = {63,23,24};
static MGROUP_ROTATE PsHd(0,PanSolHautDroit,3,_V(3.33,1.93,-1),_V(0.5,-1,0),(float)0.5*PI);
static UINT C5G1[2] = {62,22};
static MGROUP_ROTATE PsHd5g1(0,C5G1,2,_V(5.71107,-0.008334,-20),_V(0,0,1),(float)0.972*PI);
static UINT C3G1[2] = {61,21};
static MGROUP_ROTATE PsHd3g1(0,C3G1,2,_V(3.061686,4.38573,-20),_V(0,0,1),(float)PI);
et ça :
anim_PS[0] = CreateAnimation (0);
AddAnimationComponent (anim_PS[0], 0,1, &PsHd);
anim_PS[1] = CreateAnimation (0);
AddAnimationComponent (anim_PS[1], 0,1, &PsHd5g1);
anim_PS[2] = CreateAnimation (0);
AddAnimationComponent (anim_PS[2], 0,1, &PsHd3g1);
Comment fait-on pour que anim_PS[1] et anim_PS[2] soient tributaires de anim_PS[0] ?
Je comprends pas tout dans la Doc API ...
Help me please !