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 KW2AMT · Oct 25, 2012 at 04:21 PM · cameraissuesnappingscope

Camera snapping to invisible grid when in scope mode.

Hi there, sorry this is being asked again; I found this problem a little while back but cant seem to track it down now.

Anyway, my issue is that I coded a Mouse Look script which works smoothly and nicely for my mini game, however, I also added another camera as a child and coded this in as a "Scope" for my weapon. However, this camera seems to snap to an invisible grid rather than the same smooth motion the normal camera has. The problem with this is that I have targets that can only be shot whilst looking through the scope at certain points and unfortunately the problem makes it quite difficult to be accurate. Below is my mouse look script in case it is needed and also a short clip of the problem:

 #pragma strict
 
     public enum RotationAxis {MouseX = 0, MouseY = 1}
     
         var RotationAxisRotationXY = RotationAxis.MouseX || RotationAxis.MouseY;
             
     /** Define variables for X Axis which include
     Sesnitivity and minimum and maximum rotation of axis X **/
         
         var sensitivityX : float = 400f;
         
         var minimumX : float = -360f;
         
         var maximumX : float = 360f;
         
         var RotationX : float = 0f;
         
         var OriginalRotation : Quaternion;
         
         var XQuaternion: Quaternion;
         
     /** Define variables for Y Axis which include
     Sesnitivity and minimum and maximum rotation of axis Y **/
     
         var sensitivityY : float = 400f;
         var minimumY : float = -25f;
         var maximumY : float = 25f;
         var RotationY : float = 0f;
         var YQuaternion: Quaternion;
         
 function Update () {
 
     if(RotationAxisRotationXY == RotationAxis.MouseX) {
     
         RotationX += Input.GetAxis("Mouse X") * sensitivityX * Time.deltaTime;
         
             RotationX = ClampAngle (RotationX, minimumX, maximumX);
             
             OriginalRotation = XQuaternion = Quaternion.AngleAxis (RotationX , Vector3.up);
             
             transform.localRotation = OriginalRotation * XQuaternion;
             
         }
         
         
     if(RotationAxisRotationXY == RotationAxis.MouseY) {
         
         RotationY -= Input.GetAxis ("Mouse Y") * sensitivityY * Time.deltaTime;
         
             RotationY = ClampAngle (RotationY, minimumY, maximumY);
         
             OriginalRotation = YQuaternion = Quaternion.AngleAxis (RotationY, Vector3.right);
         
             transform.localRotation = OriginalRotation * YQuaternion;
             
         }
     
 }
 
 static function ClampAngle (Angle: float , min: float , max: float ) : float {
 
     if(Angle < -360){
     
         Angle += 360;
     
     }
     
     if(Angle > 360){
     
         Angle -= 360;
     
     }
         
     return Mathf.Clamp (Angle, min, max);
     
 }

Video: http://www.youtube.com/watch?v=5XDmHwAwDck&feature=plcp

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

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

9 People are following this question.

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

Related Questions

How to fix weird camera rotation? 0 Answers

Camera Movement 1 Answer

,iOS WebCamera Texture GetPixels() call returns only black colours? 1 Answer

Camera flickers between scenes 2 Answers

Don'tDetroyOnLoad | issue 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