• 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
2
Question by 3DPrasad · Sep 04, 2010 at 04:58 AM · cameraeditoralign

Align with view programmatically

In 'GameObject' menu, there are options "Move To View" ,"Align With View" etc. I want to do this programmatically in the editor.

My issue is, i can not access the camera through which we see things in 'scene view', because of which i can not align any object to the view.

with 'Camera' class we get all 'created' cameras and doesn't include 'that' camera.

here in the image below There are two 'views' (scene view and a game view)

what we see in game view is through the camera we create in scene. But i am talking about the one through which scene view(upper one) is being displayed. when we do "Align With View" on game object, it is aligned to the scene camera which i cant access because there is no such object in 'Hierarchy' window.

(i really dont know how to explain this if it is still confusing :( )

alt text

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

9 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by FaffyWaffles · Mar 01 at 07:42 AM

Slap this on. Works like a charm.

 using UnityEngine;
 using UnityEditor;
 
 [ExecuteInEditMode]
 public class AlignCam : MonoBehaviour
 {
     public Camera gameCam;
     public bool updateView = false;
     private void LateUpdate()
     {
         if (updateView)
         {
             SceneView sceneCam = SceneView.lastActiveSceneView;
             gameCam.transform.position = sceneCam.camera.transform.position;
             gameCam.transform.rotation = sceneCam.camera.transform.rotation;
         }
     }
 }
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
avatar image
1

Answer by KDevS · Mar 12, 2019 at 01:59 PM

I recently worked on an Editor tool where I had to set up waypoints for the camera movements so in case anyone stumbles across the same requirement in the future, this is what I used (Unity 2017.4):

 // get scene view camera
 SceneView view = SceneView.lastActiveSceneView;
 Camera cam = view.camera;
 
 // use cam.transform to get the position and rotation of the object you want to align to the current view.
 

Btw, in case you want to do the reverse, i.e, align the scene view to a gameobject, here is one way to do it:

 // get the view reference
 SceneView view = SceneView.lastActiveSceneView;
 // align the scene camera to the transform
 view.AlignViewToObject(viewObject.transform); //viewObject is the gameobject you want to align the view to
 
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
avatar image
0

Answer by zwcloud · Dec 17, 2016 at 05:46 AM

Now we can use EditorApplication.ExecuteMenuItem to execute any menu item, including Move To View and Align With View.

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
avatar image
1

Answer by Matt-Face · Feb 05, 2016 at 04:32 PM

I know this is an old thread, but it's the first thing i found on google when researching.

Anyway, here is an Editor script that i wrote to automatically align my scene view with what is happening in my game view whilst in play mode.

The camera follows the position of a target transform, which you drag on the transform of whatever your main camera is set to follow in the inspector).

So far i have been finding it very useful when sitting my game window next to my scene window and looking at visual debugging info, such as debug.draw-line etc. I am using this with an orbit style cam and it seems to work fine, though it may need some slight modification to work with other purposes. It does not zoom in or out automatically but it was suitable for my needs and should be relatively straight forward to modify etc.

 using UnityEngine;
 using UnityEditor;
 using System.Collections;
 
 public class AlignSceneViewWithMainCamera : MonoBehaviour {
 
     Camera mainCamera;
     public Transform target;
 
     void Start()
     {
         mainCamera = GameObject.FindGameObjectWithTag("MainCamera").GetComponent<Camera>();
     }
 
     void OnRenderObject()
     {
 
         if (SceneView.lastActiveSceneView != null && SceneView.lastActiveSceneView.camera == Camera.current) 
         {                
             if (mainCamera != null) 
             {
                 SceneView.lastActiveSceneView.pivot = target.position;
                 SceneView.lastActiveSceneView.rotation = mainCamera.transform.rotation;
                 SceneView.lastActiveSceneView.Repaint ();
             }
         }
     }
 }

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
avatar image
2

Answer by thienhaflash · Jun 29, 2012 at 01:22 PM

After hours of searching, I finally found an undocumented way to get access to the scene Camera, but sadly, although you can read the information from that, the camera's transform got reset every frame, so changing its transform.position doesn't help much (actually I managed to be able to change x & y but not z) . You can not change the projection type or orthographic size neither. You can only change the rotation (tested against Unity 3.5) . Anyway, here's a reference :

 SceneView sceneView     = SceneView.lastActiveSceneView;
 Camera cam        = sceneView.camera; //here is the scene camera
 
 //you may want to use MonoBehaviour.print(camera.transform.position) here
 
 //these lines of code won't work
 cam.isOrthoGraphic    = true;
 cam.orthographic    = true;
 cam.orthographicSize    = Sceen.height/2;
 
 
 //changing scene view's transform.position won't have any effect
 //use pivot to change x, y (but not z)
 Vector3 position = sceneView.pivot;
 position.x = 0;
 position.y = 0;
 position.z = - Screen.height/2f/Mathf.Tan(cam.fieldOfView/2*Mathf.PI/180); //this usually made the camera to pixel perfect (1 Unit : 1 pixel), but won't work for Scene camera
 
 //changing rotation will works, though
 sceneView.rotation        = new Quaternion(0,0,0,1);
 
 //remember to tell the sceneView to repaint
 sceneView.Repaint();

That's it, undocumented things, so it might be change anytime. Use with your own risk.

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
  • 1
  • 2
  • ›

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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Why my Roguelike 2D graphics are naughty in devices? 1 Answer

Camera behavior the same as the unity editor has 2 Answers

Draw Camera to Editor Window 1 Answer

How do i align my camera with a gameobjects x and y axis? 1 Answer

Why does Viking Village Water move with camera in Editor? 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