Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 liamelias · Sep 14, 2017 at 07:58 PM · quaternionsclamped rotationlookattarget

ARKit, head turning, clamp

Hi, I am building an ARKit app and I need my character's head to follow my camera. I got that part to work. However, I need to clamp the values so that his head doesn't turn all the way back when I pan around him. In other words, i need to clamp those values to only get his head to turn like a normal head would. Any help is appreciated. Thanks

using System.Collections; using System.Collections.Generic; using UnityEngine;

public class LookAt : MonoBehaviour {

 public Transform target;

 void LateUpdate () {

     transform.LookAt (target);
 }

}

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
0

Answer by tperry1x · Sep 14, 2017 at 08:27 PM

I guess you could do it like this:

 var enableturnleft = "true";
 var enableturnright = "true";
 var turnamount : float=40f;

Then, in your LateUpdate function, work out the difference between rotation of the player's head and how much it would need to rotate to face the camera. Store it in a variable like myheadlturn.

If it's a negative movement, the head is turning left, if it's positive, the head is turning right for example.

if the degrees in rotation would exceed whatever is set in turnamount, then you could use

 enableturnleft = "false";
 enableturnright = "true";

Then the head would have to turn right instead of turning all the way around. I assume it's rotating like something out of the exorcist right now? lol.

 // and enable/disable which way it is allowed to turn
 if (myheadlturn <-turnamount) {enableturnleft = "false"; enableturnright = "true";}

Something like that perhaps? It's the gist of an idea.

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
avatar image
0

Answer by liamelias · Sep 15, 2017 at 02:31 PM

Thank you for your prompt response. Lol, it does look like something out of the Exorcist, very creepy. I tried something similar to your method, it all works, however, when camera is rotating around the character, the head would only move half of the axis. Meaning only negative values. When it is supposed to look to the right, it won't work. My code looks like this now.

using System.Collections; using System.Collections.Generic; using UnityEngine;

public class LookAt : MonoBehaviour {

 public Transform target; // camera target



 void LateUpdate () {

     transform.LookAt (target); // head follows target (camera.)

     float clampedY = Mathf.Clamp(transform.eulerAngles.y, -60f,60f); //clamp the Y axis rotation of the head (half circle)
     transform.eulerAngles = new Vector3(transform.eulerAngles.x, clampedY ,transform.eulerAngles.z); //rotates the head
     }
 }
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

113 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Preventing Quaternion.RotateTowards from using shortest distance 0 Answers

Clamping Wrapping Rotation to Fixed Angle 0 Answers

How do I aim a tank turret at a point? 0 Answers

Rotation Issues with compass markers not positioned correctly 0 Answers

Can someone please help me out? thank you in advance! 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