[!tip] 提示
2 D 场景相机需要调整为 正交模式

管理游戏中相机、电影及过程动画

一安装

在包管理器中安装,集成在游戏对象及组件中

  1. 新建 游戏对象 -> Cinemachine -> 2D Camera 虚拟摄像机:并不是真的摄像机只是控制主摄像机移动。
  2. 拖动 PlayerObject虚拟摄像机对象 -> 检查器 -> Follow

二修改摄像机视野

虚拟摄像机对象 -> 检查器 -> Lens Ortho Size

三限制摄像机边缘位置

  1. 虚拟摄像机对象 -> 检查器底部 -> Extensions 添加扩展 Cinemachine Confiner
  2. TileMap对象 添加 2D 物理 -> 多边形碰撞器
  3. 编辑 多边形碰撞器 边缘细节,勾选 是触发器:不发生碰撞只触发碰撞事件
  4. 虚拟摄像机对象 -> 检查器 -> Cinemachine Confiner -> Bounding Shape 2D 指定 TileMap对象

四解决移动时抖动

虚拟摄像机对象 添加脚本

using System.Collections;
using System.Collections.Generic;
using Cinemachine;
using UnityEngine;
  
public class RoundCameraPos : CinemachineExtension
{
public float PixelsPerUnit = 32;

protected override void PostPipelineStageCallback(
CinemachineVirtualCameraBase vcam,
CinemachineCore.Stage stage, ref CameraState state, float deltaTime)
{
// Check to see what stage of post-processing we're in
if (stage == CinemachineCore.Stage.Body)
{
// Get the VC's final position
Vector3 finalPos = state.FinalPosition;

// Call the method we wrote to round the position
Vector3 newPos = new Vector3(Round(finalPos.x), Round(finalPos.y), finalPos.z);
// Set the VC's new position to the difference between the old
// position and the new rounded position that we just calculated
state.PositionCorrection += newPos - finalPos;
}
}

float Round(float x)
{
return Mathf.Round(x * PixelsPerUnit) / PixelsPerUnit;
}
}

五解决移动贴图黑线

  1. 新建 材质
  2. `Shader: Sprites / Default
  3. 勾选 Pixel Snap 像素捕捉
  4. 对所有 Tilemap 应用材质