Quote:
Originally Posted by smccray
I can't figure out how to get the object (I used a turtle) to come back to the ground? My turtle "jumps" and I found the random feature, but I can't figure out how to get it to come back down. He disappears into the ground with the "go to ground" method. Right now, I just have move up 1.5 m & move down 1.5 m. I can't figure out how to get him to move proportionally with the random feature. I tried creating a variable, but couldn't plug "random" into the value. I'm confused. 
|
According to this, I think you're doing:
turtle move up random number
turtle move down random number
You should be using a variable like (height):
height set value to random number
turtle move up height meters
turtle move down height meters
As far as making them jump periodically, there are a few ways you can do this. I made mine jump at periodic intervals during the song, but it would be easier to just do a "do together", then add a "do in order" that waits a certain amount of time, jumps a random height, waits, jumps a random height, as many times as you'd like.
I hope this helps, post again if you have more questions!