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 clakes707 · Oct 20, 2012 at 06:05 AM · gui

Solved: Problem with shooting script

So I am using a raycast for the shooting in my FPS, which is working great, but I have run into a small problem. The raycast is not cast from the actual gun object's position, but from a muzzle object, that is set in the middle of the player object(which is the FPS Controller prefab). A crosshair is drawn directly in the middle of the screen. The issue is that the muzzle object is not lined up perfectly with the crosshair, so depending on which angle the player is facing, the raycast hits close to the crosshair, but not directly at its center. Basically what I want is either a way to make the muzzle object's forward location be set to exactly the center of where the crosshair texture is draw, or (preferably) a way to make the raycast start at the muzzle object and extend to the center of the texture. I am not sure how to go about doing this. Any advice or info would be much appreciated. The code I am using is at the bottom of this post. Thanks for your time!

 if (Physics.Raycast(muzzle.transform.position, dir, hit, range))
     {
         var objectHit : String = hit.collider.gameObject.tag;
         print(objectHit);
         var cloneEffect = PrefabUtility.InstantiatePrefab(hitParticles);
         cloneEffect.transform.position = hit.point;
         cloneEffect.transform.rotation = Quaternion.FromToRotation(Vector3.up, hit.normal);
         if (hit.rigidbody)
             hit.rigidbody.AddForceAtPosition(force*dir, hit.point);
     }

 GUI.DrawTexture(new Rect(Screen.width / 2, Screen.height / 2, crosshair.width, crosshair.height), crosshair);
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
1
Best Answer

Answer by vinod.kapoor · Oct 20, 2012 at 09:23 AM

you are not drawing the Crosshair at the center of the image

you have written :

GUI.DrawTexture(new Rect(Screen.width / 2, Screen.height / 2, crosshair.width, crosshair.height), crosshair);

replace it with :

GUI.DrawTexture(new Rect(Screen.width / 2-crosshair.width /2, Screen.height / 2 - crosshair.height/2,, crosshair.width, crosshair.height), crosshair);

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 clakes707 · Oct 20, 2012 at 09:52 AM 0
Share

Oh, ok makes total sense now. The origin of the image is the top-left corner, so it is placing the top left corner at the center of the screen, correct? Thanks for your help!!

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

10 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

Related Questions

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

Setting Scroll View Width GUILayout 1 Answer

Is this a problem of unity 3 or i am doing something wrong. 1 Answer

What's wrong with my function? It keeps telling me 'loseText' is not a member of 'UnityEngine.GUIText'. Please help, please and thank you! 0 Answers

Create big city for car game? 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