Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by hozthemage · Jul 28, 2017 at 10:31 PM · bouncesine-wavemathf.sin

Creating a bouncing game without physics - Question on Mathf.Sin()

So I'm creating a simple bounce the ball game where the objective is for the player to catch a falling ball, and then have that ball bounce when caught to another point and so on and so forth.

To accomplish this without using physics I'm doing a combination of Lerping (to move on the x-axis) and Mathf.Sin to accomplish the bouncing motion. In the following code below:

 Vector3 startPos = transform.position;
 Vector3 endPos;
 
 endPos = new Vector3 (nextXSpace, -1.52f, 0f);
 
 float scaledElapsedTime = (Time.time - timeStamp) / (bounceTime / speedCo);
 
 Vector3 currentPos = Vector3.LerpUnclamped(startPos, endPos, scaledElapsedTime);
 
 currentPos.y += bendMod * Mathf.Sin (scaledElapsedTime * Mathf.PI);
 
 transform.position = currentPos;

There are three types of balls that can be bounced in this game: light, medium and heavy. bendMod is a modifier to Mathf.Sin that will essentially make the ball bounce higher. The heavier the ball, the lower the number and the smaller the bounce. If the ball is not caught, it will fall past the bottom of the screen out of the play area and register a game over.

For light and medium balls I am using a number that's high enough for the ball to clear the play area effectively (i.e the sine wave is large enough for the ball to fall out of bounds). But the problem I'm having is with the heavier balls, the ones with the smaller modifier to bendMod, the ball doesn't fall past the screen, because it's traveling in a sine wave, the ball gets to a minimum point and then comes back up.

I tried changing the value of bendMod in real time but that results in the ball traveling faster and it jerking around. I'm just not sure I'm going to be able to accomplish what I want using a Mathf.Sin() but I'm not sure what other options I have. Is there anything I can do to Mathf.Sin for this to work correctly? Or do I have to do something completely different than what I have here?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

67 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Jump character using Sine Curve 1 Answer

mesh deformation: howto get a coherent move into x and y? 1 Answer

How do you keep a bouncing ball from "breaking" through cloth 1 Answer

Help me bounce (make player bounce when landing from a jump) 0 Answers

pong question 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges