Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 MindlessZ · Jun 29, 2015 at 10:25 AM · projectilemousepositionorthographic camera

Problem firing projectile at mouse location

The gist is I'm trying to fire a bullet on a mouse click, at the cursor.

The code i'm using is:

 if(Input.GetMouseButtonDown(0)) {
     Vector3 clickPosition = new Vector3(Input.mousePosition.x, Input.mousePosition.y, 0);
     GameObject projectile = Instantiate(bullet, transform.position, Quaternion.identity) as GameObject;
     projectile.transform.LookAt(clickPosition);
     projectile.GetComponent<Rigidbody>().velocity = projectile.transform.forward * BulletSpeed;
 }

This takes place in a 3d environment played in 2d, so I only need the bullet to move along the x & y axes. The problem i'm having is if you imagine the screen as a plane, the bullet only ever travels in the first quadrant. If I fire to the left, the bullet travels almost straight up. If i fire downward the bullet travels directly right, If I shoot upwards it travels at near a 45 degree angle.

I'm sure I'm overlooking something simple, but I can't seem to figure out what.

Thanks in advance!

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
2
Best Answer

Answer by capnjake · Jun 29, 2015 at 04:00 PM

So this is the method I am using. First I have the parent object turning towards the mouse cursor and then I simply spawn a bullet object facing that same direction, give it force forward, and then send it on its way.

 using UnityEngine;
 using Systems.Collections;
 
 public class PlayerController : Monobehaviour
 {
     public float speed;
     
     void FixedUpdate()
     {
         var mousePosition = Camera.main.ScreenToWorldPoint (Input.mousePosition);
         Quaternion rot = Quaternion.LookRotation(transform.position - mousePosition, Vector3.forward);
         transform.rotation = rot;
         transform.eulerAngles = new Vector3(0, 0, transform.eulerAngles.z);
         rigidbody2D.angularVelocity = 0;
         
         float input = Input.GetAxis("Vertical");
         rigidbody2D.AddForce(gameObject.transform.up * speed * input);
     }

     void Update()
     {
         if (Input.GetButtonDown("FIre1"))
         {
             Rigidbody2D clone = Instantiate(bullet, gun.transform.position, gun.transform.rotation);
             clone.GetComponent<Rigidbody2D>().AddForce(transform.up * bulletSpeed); // Use transform.forward for 3D?
         }
     }
 }

Comment
Add comment · Show 2 · 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 MindlessZ · Jul 01, 2015 at 01:15 AM 0
Share

ScreenToWorldPoint is exactly what I needed. I'm not entirely sure why my method was behaving the way it was, but this seems far more reliable. Thank you

avatar image starikcetin · Jul 01, 2015 at 01:24 AM 0
Share

@$$anonymous$$indlessZ it's because you define a world point with the 2D screen coordinates of mouse click. it's not related with the point you wanted.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Projectiles in 2.5D game 0 Answers

Why does my render texture cursor appear offset from my mouse cursor? 1 Answer

Problem Using ScreentoWorldPoint to Fire a Projectile 1 Answer

Cannot get mouse position in 2D using perspective 1 Answer

Getting 2D projectiles that fire in the direction of the mouse position to work in unity 5? 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