Answers for "unity how to get camera position"

C#
0

how to get the position of a camera in unity

Camera.main.transform.position;
Posted by: Guest on August-14-2021
0

unity get camera

// Gets the camera with the tag "MainCamera" attached to it.
Camera.main;

// Gets the currently active camera.
Camera.current;
Posted by: Guest on January-31-2022

C# Answers by Framework

Browse Popular Code Answers by Language