csharp Cinemachine虚拟相机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Cinemachine虚拟相机相关的知识,希望对你有一定的参考价值。

public GameObject cam1, cam2;

private void Update()
{
  if (Input.GetKeyDown(KeyCode.Alpha1))
  {
    cam1.SetActive(true);
    cam2.SetActive(false);
  }
  if (Input.GetKeyDown(KeyCode.Alpha2))
  {
    cam1.SetActive(false);
    cam2.SetActive(true);
  }
}
//BRAIN
// Use a rotated game object in the World Up Override to change the orrientation of the camera

以上是关于csharp Cinemachine虚拟相机的主要内容,如果未能解决你的问题,请参考以下文章

Unity 2D 中 Pixel Perfect Camera 和 Cinemachine 的问题

Unity中实现高级相机操作——Cinemachine插件

Unity中实现高级相机操作——Cinemachine插件

游戏开发教程Unity Cinemachine快速上手,详细案例讲解(虚拟相机系统 | 新发出品 | 良心教程)

游戏开发教程Unity Cinemachine快速上手,详细案例讲解(虚拟相机系统 | 新发出品 | 良心教程)

游戏开发教程Unity Cinemachine快速上手,详细案例讲解(虚拟相机系统 | 新发出品 | 良心教程)