Air Hockey
ni rafaelferca
Idagdag sa iyong home screen para sa mabilis na pag-access
I-install ang larong ito
Pindutin ang Share, tapos piliin ang "Add to Home Screen" para mabilis mong ma-access ang larong ito.
Air Hockey
Mga tag para sa Air Hockey
Deskripsyon
Air Hockey
Paano Maglaro
Use Mouse to control yout stick
Mga Komento
aghloe
Jun. 21, 2015
I forgot to say which are vectors and which are scalars. Basically "S" should be a vector, and you should multiply P*(D/W) with a unitary vector (U) in the direction of the collision before adding with S. However i think instead of adding then chosing a minimum it may be better to have an extra multiplier "E". if S=M then E=0 ... if S=0 then E=1 (i leave the rest of the curve to you). Then do: X=S + U*E*P*(D/W). That will get rid of the need of a minimum and make it more realistic :) Cheers again, and sorry for the double post.
aghloe
Jun. 21, 2015
whoa this game is actually pretty fun!. however there is a problem with collisions. this is more noticeable when the disc is moving really slow. My guess is that you dont take into account the force that the player is giving to the disc which should affect the disc speed (even if slighly). For example: make the maximum speed of the disc "M". The maximum speed the player can give to the disc "P", The current speed of the disc "S". The distance to the real mouse position at the moment of the colision is "D". and the maximum distance the mouse can be at any time from any collision is "W". To calculate the new speed do: { X = S + P*(D/W) } and make A=minimum(M,X). cheers~