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 Neon_Apollo · Oct 31, 2019 at 09:03 AM · cameracollisioncollider2d

Is there a way to make the camera collide with specific objects - 2D

Hello, I am creating a game with a strategy-based view (think europa universalis or hearts of iron). I want to know if it is possible to have the camera collide with specific objects. In my case I have multiple maps in the same scene and the player controls where the camera is directly by clicking and dragging, I do not want the player to be able to click and drag their way over to each map directly so I have put Box Collider 2D's between them, is there any way that I could make the camera collide with those Box Collider 2D's or do something similar.

Here is the camera controller script I'm using if it is useful:

     private Vector3 ResetCamera;
     private Vector3 Origin;
     private Vector3 Diference;
     private bool Drag = false;
     void Start()
     {
         ResetCamera = Camera.main.transform.position;
     }
     void LateUpdate()
     {
         if (Input.GetMouseButton(0))
         {
             Diference = (Camera.main.ScreenToWorldPoint(Input.mousePosition)) - Camera.main.transform.position;
             if (Drag == false)
             {
                 Drag = true;
                 Origin = Camera.main.ScreenToWorldPoint(Input.mousePosition);
             }
         }
         else
         {
             Drag = false;
         }
         if (Drag == true)
         {
             Camera.main.transform.position = Origin - Diference;
         }
         //Resets Camera position on mouse middle button click
         if (Input.GetMouseButton(2))
         {
             Camera.main.transform.position = ResetCamera;
         }
     }
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
2
Best Answer

Answer by TheKnightsofUnity · Oct 31, 2019 at 01:00 PM

Hello @Neon_Apollo, Instead of creating box colliders between maps, I suggest to create one box collider for each map that would define its boundaries. Then after changing camera position we need to make sure that we are not out of box collider bounds. We can easily do it by clamping x,y and z position with box collider bounds max and min values. After that, you can adjust boxCollider bound to the maps dimensions.

code:

 [SerializeField]
     private BoxCollider mapBoundaries; //reference to BoxCollider that will define map boundaries
     private Vector3 ResetCamera;
     private Vector3 Origin;
     private Vector3 Diference;
     private bool Drag = false;
     void Start()
     {
         ResetCamera = Camera.main.transform.position;
     }
     void LateUpdate()
     {
         if (Input.GetMouseButton(0))
         {
             Diference = (Camera.main.ScreenToWorldPoint(Input.mousePosition)) - Camera.main.transform.position;
             if (Drag == false)
             {
                 Drag = true;
                 Origin = Camera.main.ScreenToWorldPoint(Input.mousePosition);
             }
         }
         else
         {
             Drag = false;
         }
         if (Drag == true)
         {
             Camera.main.transform.position = Origin - Diference;
             Camera.main.transform.position = new Vector3(
                 Mathf.Clamp(Camera.main.transform.position.x, mapBoundaries.bounds.min.x, mapBoundaries.bounds.max.x),
                  Mathf.Clamp(Camera.main.transform.position.y, mapBoundaries.bounds.min.y, mapBoundaries.bounds.max.y),
                 Mathf.Clamp(Camera.main.transform.position.z, mapBoundaries.bounds.min.z, mapBoundaries.bounds.max.z));
         }
         //Resets Camera position on mouse middle button click
         if (Input.GetMouseButton(2))
         {
             Camera.main.transform.position = ResetCamera;
         }
     }

Comment
Add comment · Show 1 · 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 Neon_Apollo · Oct 31, 2019 at 11:17 PM 0
Share

Thanks! Works wonderfully. I'll add for anyone that might have this problem in the future to make sure the collider object has the same Z position as the camera, as that caused a slight visual problem for me.

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

225 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 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

Camera bounce/collision 1 Answer

The tilemap collider is simply not working 0 Answers

How to use OverlapCollider? 1 Answer

why camera does not recognize the collision? 1 Answer

move camera when it collides with a trigger 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