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 jmambu · Sep 04, 2017 at 10:52 AM · physicstrajectoryparabolic

How to make an object launched and landed on a target with gravity pull (Half parabolic trajectory) ?

Hi everyone, I am following a tutorial here https://vilbeyli.github.io/Simple-Trajectory-Motion-Example-Unity3D/

I'd like to modify the Launch () function by starting the object from top (see image). So half of the parabolic trajectory. So I removed the Vy thinking I would not need it. But the result is not accurate (didn't reach the target).

Can anyone help? Thank you so much

alt text

 private void Launch()
     {
        
         Vector3 pos = transform.position;
        Vector3 target = dot.position;
 
 
        distance between target and source
         float dist = Vector3.Distance(pos, target);
 
         rotate the object to face the target
         transform.LookAt(target);
 
     
         // calculate initival velocity required to land the cube on target using the formula (9)
         float Vi = Mathf.Sqrt(dist * -Physics.gravity.y / (Mathf.Sin(Mathf.Deg2Rad * _angle * 2)));
         float Vy, Vz;   // y,z components of the initial velocity

       //Vy = Vi * Mathf.Sin(Mathf.Deg2Rad * _angle);
         Vz = Vi * Mathf.Cos(Mathf.Deg2Rad * _angle);
 
         // create the velocity vector in local space
         Vector3 localVelocity = new Vector3(0f, 0f, Vz);
         
         // transform it to global vector
         Vector3 globalVelocity = transform.TransformVector(localVelocity);
 
         // launch the cube by setting its initial velocity
         GetComponent<Rigidbody>().velocity = globalVelocity;
 
         // after launch revert the switch
         _targetReady = false;
     }`


capture.png (36.8 kB)
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by akillingbeck · Sep 04, 2017 at 12:43 PM

All you had to do is move your object to that position and then call launch. It calculates from it's current position in the launch function. No need to change the function. (assuming the function actually works initially)

Comment
Add comment · Show 1 · Share
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
avatar image jmambu · Sep 04, 2017 at 03:33 PM 0
Share

I did, but it didn't work. It went over the target. I assume it's because it has Vy that pushed it up more than it needed ( Vy was needed if launch from ground to make an arc).

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

114 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 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

Simulating a trajectory that takes collisions into account 2 Answers

Ellipticall Orbit like Spaceflight simulator 1 Answer

Drawing projectile trajectory 5 Answers

Calculate a trajectory in all possible directions (2D). 2 Answers

Calculating trajectory of Spaceship 0 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