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 CommitteeWind · Apr 13, 2012 at 05:40 AM · directionmathangleray

Angles from Directions

If I want to draw a line straight in front of my game object I can do:

 Gizmos.DrawRay(transform.position, transform.forward);

How do I draw a line 15 degrees on each side of this line at the same 10 unit distance?

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

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by DaveA · Apr 13, 2012 at 08:21 AM

May be cheezy, but you could rotate your object 15 degrees, DrawRay, then rotate -30 degrees, DrawRay, then rotate 15 to get back to original rotation.

Comment
Add comment · Show 4 · 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 CommitteeWind · Apr 13, 2012 at 02:53 PM 0
Share

Hahahah. This actually works. So I'd like to know how to do it mathematically since it's interesting to me, but this will work just fine.

avatar image fafase · Apr 13, 2012 at 02:58 PM 0
Share

$$anonymous$$aybe use an empty game object attached to the player and this game object is rotating left/right using a cos/sin function to make it go back and forth.

transform.rotation= Vector3(0,A*cos(x)*Time.time,0);

something like this maybe.

avatar image CommitteeWind · Apr 13, 2012 at 03:05 PM 0
Share

I would use this for rotating between between two angles right? Right now I'm using this to raycast.

avatar image fafase · Apr 13, 2012 at 03:12 PM 0
Share

Your emtpy object would have the raycast script that is sent straight ahead of it Vector3.forward. So if you rotate the object in the local world (guy world not the whole world) the ray is moving from left to right. The whole guy though remains still. It is like the blind guy cane. the blind guy goes straight, the cane sweeps in front.

avatar image
1

Answer by fafase · Apr 13, 2012 at 03:33 PM

Ok Think I got it. Create an empty object that you child to your player. the this to the child object.

 function Update(){
      transform.Rotate(Vector3(0,2*Mathf.Cos(5*Time.time),0));
 }
 
 function OnDrawGizmosSelected () {
     // Draws a 5 meter long red line in front of the object
     Gizmos.color = Color.red;
     var direction : Vector3 = transform.TransformDirection (Vector3.forward) * 5;
     Gizmos.DrawRay (transform.position, direction);
 }

It works for me at least.Now the ray is sweeping in fromt of the guy, you need to define the proper value to make 15 degrees.

Comment
Add comment · 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

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

6 People are following this question.

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

Related Questions

Angle Of Ray 2 Answers

Set an angle for bouncing 1 Answer

Rotating character based on joystick angle, at an angle 0 Answers

[2D] Angle to Vector conversion 1 Answer

How do i make a flowing 90 degree turn? 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