Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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 /
  • Help Room /
avatar image
0
Question by ShazBang · Mar 06, 2016 at 08:43 PM · rotationscript.object

Clicking on an object to make player face it

Okay so I have my player object in the centre of the screen, above him is a square, if i click this square I want my player to rotate 180 degrees (because he is facing down) and look at that object. I'm having trouble with coding, I'm trying different code but it isn't working.

Can anyone please give me some help, I'm very new to coding.

Thanks.

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 samathon · Mar 07, 2016 at 12:20 AM

Here's the first thing that came to mind for me:

Create a script on the player object with a public function called something like FaceObject() that, when called, uses LookAt() or RotateTowards() to turn it to face the square. LookAt() will be a little easier, but I believe it will just make the player instantly face the object, whereas you can use RotateTowards() to turn it gradually. You can pass in the square (or whatever object to turn to face) as a parameter to FaceObject.

Then create a script on the square with an OnMouseDown() function that calls FaceObject()

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 ShazBang · Mar 09, 2016 at 02:45 AM 0
Share

Thanks man, I will give this a go soon!

avatar image samathon ShazBang · Mar 11, 2016 at 11:06 AM 0
Share

@ShazBang no problem! did you have any luck?

avatar image ShazBang samathon · Mar 15, 2016 at 11:48 PM 0
Share

Okay so I'm using this script provided by Unity:

 using UnityEngine;
 using System.Collections;
 
 public class ExampleClass : $$anonymous$$onoBehaviour {
     public Transform target;
     public float speed;
     void Update() {
         Vector3 targetDir = target.position - transform.position;
         float step = speed * Time.deltaTime;
         Vector3 newDir = Vector3.RotateTowards(transform.forward, targetDir, step, 0.0F);
         Debug.DrawRay(transform.position, newDir, Color.red);
         transform.rotation = Quaternion.LookRotation(newDir);
     }
 }


I get how this works but need help with adding in "when the cube is clicked, execute the rotate towards part"

Thanks for the help so far though man.

Show more comments

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

it is possible to rotate a texture ? 0 Answers

How i can set Start Position and Ending position in ROTATION AROUND AXIS? 0 Answers

Rotate gameobject relative to it's own rotation 1 Answer

how do i rotate an object? C# 1 Answer

The direction my camera is rotating should indicate the direction my object facing 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