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 MIkeross3 · Feb 13, 2015 at 12:16 PM · c#mouseprojectilemouselookray

A projectile problem... (Mouse click using Ray/Plane) C#

Okay so I am just mashing up a bunch of code that I found over unityAnswers and spinning it to my own creation. Right now I just want it functionable, then I will tweak it around. I have some code, where I commented out probable issues. I have been researching for hours trying to get a simple script to work, but Rays are kicking my butt!!! I really would appreciate a lending hand in pushing me in the right direction!

 case Action.Bolt:
         {
 
             //find mouse position through a plane, vector3.zero == Y position, so change to a practical value or to
                 //move the whole game down. 
             Plane zeroPlane = new Plane( Vector3.up, Vector3.zero );
             Ray ray = Camera.main.ScreenPointToRay( Input.mousePosition );
             float distance;
             
             if( zeroPlane.Raycast( ray, out distance ) )
             {
 
 
                 //gets mouse position
                     //need to set origin to the character child "Barrel"
                 Vector3 outputPosition = ray.origin + ray.direction * distance;
                 Debug.Log( "Mouse Position(Bullet should fly here after cool down): " + outputPosition  );
 
                 //spawns bullet
                 Instantiate(ProjectilePrefab, transform.position,Quaternion.identity);
     //cant find a way to add force to above line
         //also need to find a way to get barrel to point in this direction
                 //and make projectile's origin on the character's child "Barrel".
 
 
                 //You can use this position to rotate the bullet like so
                 ProjectilePrefab.transform.LookAt( outputPosition );
         
 
             }
 
             break;
             // Add a case here
             }


I will include code without comments as well. I need to set the origin on the ProjectilePrefab to the child of my character called "Barrel" and then I need to add force to it in the direction of the mouse where I already have. Also that vector3.zero would help if anybody knows.

 case Action.Bolt:
         {
 
             
             Plane zeroPlane = new Plane( Vector3.up, Vector3.zero );
             Ray ray = Camera.main.ScreenPointToRay( Input.mousePosition );
             float distance;
             
             if( zeroPlane.Raycast( ray, out distance ) )
             {
 
 
                 
                 Vector3 outputPosition = ray.origin + ray.direction * distance;
                 Debug.Log( "Mouse Position(Bullet should fly here after cool down): " + outputPosition  );
 
                 //spawns bullet
                 Instantiate(ProjectilePrefab, transform.position,Quaternion.identity);
     
                 
 
 
                 
                 ProjectilePrefab.transform.LookAt( outputPosition );
         
 
             }
 
             break;
             // Add a case for each Action
             }

Any help will be MUCH appreciated!!!

Comment
Add comment · Show 1
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 meat5000 ♦ · Feb 13, 2015 at 11:07 AM 0
Share

Distance is... how much?

'out' is for the hitinfo that is created. If you are trying to use distance, its a value you put in to say how far the ray goes. Read the docs

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Unity's mouse look causing movement issues 1 Answer

How to disable MouseLook in ingame pause. 1 Answer

Fix Gimbal Lock Mouse Look? 0 Answers

Detect mouse movement when cursor is on edge of screen? 2 Answers

Why does my mouselook sensitivity change depending on resolution? (C#) 1 Answer


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