Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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 PoppinFresh · May 14, 2015 at 06:59 PM · camerauidragzoomscroll

Can you use UI Scroll Rect for camera movement?

I have a 2D scene that uses pinch zoom. Of course the zoom only goes into the center of the scene, so I would like to add a function that allows the user to drag the scene, allowing them to see other areas. I've had similar effects using the UI Scroll Rect feature, but I had a UI panel with all the elements on the panel. It doesn't really seem practical to make everything in the scene a child of a panel and there doesn't seem to be any way to add a rect transform to a camera (which makes sense). Is there another easy way to do this?

Note: I realize there's probably a way to do this in script, but before researching, writing and testing a script, I want to make sure there isn't a super easy & fast way to do this in the Unity editor, which has happened to me numerous times in he past.

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
0

Answer by fafase · May 14, 2015 at 07:58 PM

If you have the pinch working you can also use it to move around. Take the middle point of your two touches and compare it over frame. The delta you get can be applied to Translate method on your camera.

 void Update(){
    Vector3 pinch = (touch1.position - touch0.position);
    Vector3 newPos = touch0.position + pinch * 0.5f;
    Vector3 translate = newPos - oldPos;
    Camera.main.transform.Translate(translate * Time.deltaTime);
    oldPos = newPos;
 }

This is the basic idea as you need to consider how your camera can move.

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

2 People are following this question.

avatar image avatar image

Related Questions

NGUI: Draggable Camera and Scroll Panel 0 Answers

How do I make the camera zoom in and out with the mouse wheel? 10 Answers

Is it good idea to implement camera drag with UI drag event? 2 Answers

Drag on Scroll Rect Non Proportional 0 Answers

ScrollRect scrollbar drag being overridden and stuttering to top 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