unity3d 镜像翻转画面脚本

65 篇文章 5 订阅

做项目镜子屏幕需要左右翻转画面

直接挂摄像机上勾选一下即可(注意只反场景里的 不包括ui)

  using UnityEngine;
     [RequireComponent(typeof(Camera))]
     [ExecuteInEditMode]
     public class MirrorFlipCamera : MonoBehaviour {
         new Camera camera;
         public bool flipHorizontal;
         void Awake () {
             camera = GetComponent<Camera>();
         }
         void OnPreCull() {
             camera.ResetWorldToCameraMatrix();
             camera.ResetProjectionMatrix();
             Vector3 scale = new Vector3(flipHorizontal ? -1 : 1, 1, 1);
             camera.projectionMatrix = camera.projectionMatrix * Matrix4x4.Scale(scale);
         }
         void OnPreRender () {
             GL.invertCulling = flipHorizontal;
         }
         
         void OnPostRender () {
             GL.invertCulling = false;
         }
     }

直接使用

Matrix4x4 mat = camera.projectionMatrix;  
mat *= Matrix4x4.Scale(new Vector3(-1, 1, 1));  
camera.projectionMatrix = mat;

会造成镜像里画面出现问题

因为没有重置矩阵,摄像机画面不一定是正对着的

主要代码摘自

http://answers.unity3d.com/questions/20337/flipmirror-camera.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值