Jump to content



problem about lesson 10

  • You cannot reply to this topic
2 replies to this topic

#1 Chinglisher   Members   -  Reputation: 100

Like
0Likes
Like

Posted 16 October 2011 - 02:55 AM

i changed

xpos += (float)sin(heading*piover180) * 0.05f;
zpos += (float)cos(heading*piover180) * 0.05f;
into

xpos += (float)sin(heading*piover180) * 0.0005f;
zpos += (float)cos(heading*piover180) * 0.0005f;
then i run the program finding the scene shakes when i press UP or DOWN to move,
it doesn't move in a smooth way, can anyone tell how to solve this?

Ad:

#2 lc_overlord   Members   -  Reputation: 424

Like
0Likes
Like

Posted 17 October 2011 - 03:53 AM

It's most likely because the lesson doesn't use a delta time value, instead movement is based on how many frames are rendered, so any inconsistencies in the frame rate show up as shaking or stuttering in the movements, adding delta time compensates for that, so do skip ahead to lesson 32 an learn how to implement it.

#3 Chinglisher   Members   -  Reputation: 100

Like
0Likes
Like

Posted 03 November 2011 - 02:06 AM

View Postlc_overlord, on 17 October 2011 - 03:53 AM, said:

It's most likely because the lesson doesn't use a delta time value, instead movement is based on how many frames are rendered, so any inconsistencies in the frame rate show up as shaking or stuttering in the movements, adding delta time compensates for that, so do skip ahead to lesson 32 an learn how to implement it.

thank you






We are working on generating results for this topic
PARTNERS