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 Demigoth · Mar 07, 2014 at 12:07 AM · cameraboundarylimitspan

How can I set limits to camera pan on X and Y axis

So I got the camera to pan already, but when I try to add some boundaries with Mathf.Clamp I get come issues. Here is my panning code...

 using UnityEngine;
 using System.Collections;
 
 public class CameraDrag : MonoBehaviour 
 {
     public float dragSpeed = 2.0f;
     private Vector3 dragOrigin;
     private bool isPanning;
 
 
     // Use this for initialization
     void Start () 
     {
         
     }
     
     // Update is called once per frame
     void Update () 
     {
         if (Input.GetMouseButtonDown(0)) 
         {
             dragOrigin = Input.mousePosition;
             isPanning = true;
         }
 
         if (!Input.GetMouseButton(0)) 
         {
             isPanning = false;
         }
 
         if (isPanning) 
         {
             Vector3 pos = Camera.main.ScreenToViewportPoint(Input.mousePosition - dragOrigin);
 
             Vector3 move = new Vector3(pos.x * dragSpeed, pos.y * dragSpeed, 0);
             transform.Translate(move, Space.Self);
 
             transform.position = new Vector3(Mathf.Clamp(Transform.position.x, -10,10),Mathf.Clamp(transform.position.y, -10,10),0);  //without this the code works fine but I want to set boundaries for the actual map.
         }
     }
 }


So the last line of code is the problem, without it the code works fine but I need to set the boundaries somehow. Any help would be really appreciate it.

Victor

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
1
Best Answer

Answer by YourGamesBeOver · Mar 07, 2014 at 12:40 AM

In your problem line, you capitalized transform ("Transform.position.x"). this refers to the class itself and not the instance.

Comment
Add comment · Show 2 · 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 Demigoth · Mar 07, 2014 at 02:03 AM 0
Share

Well, that fixed it... it was a very dumb mistake from me. Thank you very much @YourGamesBeOver.

avatar image YourGamesBeOver · Mar 07, 2014 at 02:57 PM 0
Share

No problem, i make that mistake a lot too!

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

21 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

Related Questions

How to accurately zoom (not dolly) and pan Camera to mouse click position 1 Answer

Set screen boundaries with code 1 Answer

How can I keep three targets in sight, and keep the camera above a specific height - while it resizes? 0 Answers

Making a camera Pan around a cube 1 Answer

Position icon lags while panning 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