Unity Quick Tip - Focusing the Scene View on Multiple Game Objects
In this Unity quick tip tutorial we'll show you how to focus the Scene view on multiple game objects at the same time, allowing you to quickly see all the objects you are interested in. 1. Create a new 3D project in Unity Hub. 2. Add a Cube to the scene by clicking the plus button on the Hierarchy panel and selecting 3D Object->Cube. 3. Ensure the position of the cube is set to (0, 0, 0) in the Inspector panel. 4. With the cube selected in the Hierarchy panel, move the mouse cursor over the Scene view and press the F key. The Scene view will now be focused on the cube. 5. Now add a Sphere to the scene by clicking the plus button on the Hierarchy panel and selecting 3D Object->Sphere. 6. Set the position of the sphere to (0, 5, 0) in the Inspector panel. 7. With the sphere selected in the Hierarchy panel, move the mouse cursor over the Scene view and press the F key. The Scene view will now be focused on the sphere. 8. You'll notice that by focusing on the sphere you can...