纳金网

标题: 摄像机左右颠倒的画面 [打印本页]

作者: 王者再临    时间: 2014-12-31 21:11
标题: 摄像机左右颠倒的画面
  1. using UnityEngine;

  2. using System.Collections;

  3. public class MirrorCamera : MonoBehaviour {

  4. // Use this for initialization

  5. void Start () {

  6. MirrorFlipCamera(Camera.main);

  7. }

  8. void MirrorFlipCamera(Camera camera) {

  9. Matrix4x4 mat = camera.projectionMatrix;

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

  11. camera.projectionMatrix = mat;

  12. }

  13. // Update is called once per frame

  14. void Update () {

  15. }

  16. }
复制代码

作者: 我不再年轻    时间: 2015-1-5 21:48
简单好用, 多谢分享知识!
作者: tianhett    时间: 2015-1-5 23:16
感谢分享。。。。。。。
作者: xizhenlong    时间: 2015-1-16 15:05
给个效果截图啊            




欢迎光临 纳金网 (http://rs.narkii.com/club/) Powered by Discuz! X2.5