admin管理员组文章数量:1345415
I would like to position the camera and follow the airplane beside it.
The camera is in front of the airplane and not following it.
I tried this:
public class FollowPlayerX : MonoBehaviour
{
public GameObject plane;
private Vector3 offset = new Vector3(30,0,10);
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.position = plane.transform.position + offset;
transform.rotation = plane.transform.rotation;
plane.transform.rotation = Quaternion.Euler(new Vector3(0,0,-90));
}
}
I would like to position the camera and follow the airplane beside it.
The camera is in front of the airplane and not following it.
I tried this:
public class FollowPlayerX : MonoBehaviour
{
public GameObject plane;
private Vector3 offset = new Vector3(30,0,10);
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.position = plane.transform.position + offset;
transform.rotation = plane.transform.rotation;
plane.transform.rotation = Quaternion.Euler(new Vector3(0,0,-90));
}
}
Share
Improve this question
asked 2 days ago
righthererighthere
173 bronze badges
2
- You won't discover anything using only fixed values; you need to at least vary them to see the effect, if any; and if your terms of reference are correct. – Gerry Schmitz Commented 2 days ago
- why do you modify the rotation of the plane? – derHugo Commented yesterday
1 Answer
Reset to default 0If your gameplay involves rotating the plane, a simple offset is not enough. You need to translate that offset relative to the planes rotation, and also rotate the camera to maintain the correct camera rotation.
Start by positioning your camera in the scene exactly how you want it.
We need variables for: the cameras direction (forward) vector (in the planes local space), and the position (also in the planes local space).
The Transform
type gives us some handy functions to do these translations from/to local and world spaces. In this case we will use: InverseTransformDirection
, TransformDirection
for the cameras rotation, and InverseTransformPoint
and TransformPoint
for the cameras position.
[SerializeField] private Transform plane;
private Vector3 cameraPosition;
private Vector3 cameraLookDirection;
In Start we will get our cameras position and look direction by using the plane transform to translate into the local space of the plane.
private void Start()
{
cameraPosition = plane.InverseTransformPoint(transform.position);
cameraLookDirection = plane.InverseTransformDirection(transform.forward);
}
Then we apply them in Update by translating from the local space of the plane back to world space. For the cameras rotation we use Quaternion.LookRotation
to convert the translated forward direction into a rotation.
private void Update()
{
transform.position = plane.TransformPoint(cameraPosition);
transform.rotation = Quaternion.LookRotation(plane.TransformDirection(cameraLookDirection));
}
Another option is to use Cinemachine
, which is a package by Unity for handling the camera. It has a bit of a learning curve, but can do everything you can imagine. For super simple projects its a bit of overkill, but if you want to do cool cut scenes and more complex follow/switching etc, it is the better choice.
本文标签: how to put camera beside airplane in Unity CStack Overflow
版权声明:本文标题:how to put camera beside airplane in Unity C# - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743813813a2543550.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论