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 /
avatar image
0
Question by AlissonVS · Apr 05, 2016 at 05:19 AM · camerascripting problemcharactercontrollerorbit

Orbit Camera on Survival Shooter Sample Project

Hello everyone, please, how can I implement an orbit camera using the Survival Shooter example from Unity Website? I tried using the following code:

 using UnityEngine;
 using System.Collections;
 
 public class CameraController : MonoBehaviour {
 
     [System.Serializable]
     public class PositionSettings
     {
         public Vector3 targetPosOffset = new Vector3(0, 3.4f, 0);
         public float lookSmooth = 100;
         public float distanceFromTarget = -8;
         public float zoomSmooth = 10;
         public float maxZoom = -2;
         public float minZoon = -15;
         public float xRotation;
         public float yRotation;
     }
 
     [System.Serializable]
     public class OrbitSettings
     {
         public float xRotation = -20;
         public float yRotation = -180;
         public float maxXRotation = 0;
         public float minXRotation = -85;
         public float vOrbitSmooth = 150;
         public float hOrbitSmooth = 150;
     }
 
     [System.Serializable]
     public class InputSettings
     {
         public string ORBIT_HORIZONTAL_SNAP = "OrbitHorizontalSnap";
         public string ORBIT_HORIZONTAL = "OrbitHorizontal";
         public string ORBIT_VERTICAL = "OrbitVertical";
         public string ZOOM = "Mouse ScrollWheel";
     }
 
     public PositionSettings position = new PositionSettings();
     public OrbitSettings orbit = new OrbitSettings();
     public InputSettings input = new InputSettings();
 
     public Transform target;
     Vector3 targetPos = Vector3.zero;
     Vector3 destination = Vector3.zero;
     CharacterController charController;
     float vOrbitInput, hOrbitInput, zoomInput, hOrbitSnapInput;
 
     void Start()
     {
 
         SetCameraTarget(target);
 
         targetPos = target.position + position.targetPosOffset;
         destination = Quaternion.Euler(orbit.xRotation, orbit.yRotation + target.eulerAngles.y, 0) * -Vector3.forward * position.distanceFromTarget;
         destination += targetPos;
         transform.position = destination;
     }
 
     void SetCameraTarget(Transform t)
     {
         target = t;
 
         if (target != null)
         {
             if (target.GetComponent<CharacterController>())
             {
                 charController = target.GetComponent<CharacterController>();
             }
             else
                 Debug.LogError("The camera's target needs a character controller.");
         }
         else
             Debug.LogError("Your camera needs a target.");
     }
 
     void GetInput()
     {
         vOrbitInput = Input.GetAxisRaw(input.ORBIT_VERTICAL);
         hOrbitInput = Input.GetAxisRaw(input.ORBIT_HORIZONTAL);
         hOrbitSnapInput = Input.GetAxisRaw(input.ORBIT_HORIZONTAL_SNAP);
         zoomInput = Input.GetAxisRaw(input.ZOOM);
     }
 
     void Update()
     {
         GetInput();
         OrbitTarget();
         ZoomInOnTarget();
     }
 
 
     void LateUpdate()
     {
         // moving
         MoveToTarget();
         // rotating
         LookAtTarget();
     }
 
     void MoveToTarget()
     {
         targetPos = target.position + position.targetPosOffset;
         destination = Quaternion.Euler(orbit.xRotation, orbit.yRotation + target.eulerAngles.y, 0) * -Vector3.forward * position.distanceFromTarget;
         destination += targetPos;
         transform.position = destination;
     }
 
     void LookAtTarget()
     {
         Quaternion targetRotation = Quaternion.LookRotation(targetPos - transform.position);
         transform.rotation = Quaternion.Lerp(transform.rotation, targetRotation, position.lookSmooth * Time.deltaTime);
     }
 
     void OrbitTarget()
     {
         if(hOrbitSnapInput > 0)
         {
             orbit.yRotation = -180;
         }
 
         orbit.xRotation += -vOrbitInput * orbit.vOrbitSmooth * Time.deltaTime;
         orbit.yRotation += -hOrbitInput * orbit.hOrbitSmooth * Time.deltaTime;
 
         if(orbit.xRotation > orbit.maxXRotation)
         {
             orbit.xRotation = orbit.maxXRotation;
         }
         if(orbit.xRotation < orbit.minXRotation)
         {
             orbit.xRotation = orbit.minXRotation;
         }
     }
 
     void ZoomInOnTarget()
     {
 
     }
 }

When player rotates looking at mouse cursor, the method of CameraController LookAtTarget receives the new rotation from the player resulting in a infinity loop rotation following the mouse cursor and the player rotation.

So, how can I implement Player rotation looking at mouse cursor (like Survival Shooter), without interfering in the camera orbit rotation?

Thank you in advance.

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

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

How can I make the camera to orbit also up and down ? 1 Answer

Character controller and MouseOrbit Camera(don't work togheter) 2 Answers

Trying to freeze FPS character to one point for a specific amount of time 1 Answer

Many cameras with Camera.main.ScreenToWorldPoint trouble. 2 Answers

Controller Movement Problem 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