
Unity3D
IT_ZB
这个作者很懒,什么都没留下…
展开
-
unity3D 相机画面抖动的效果实现
using System.Collections; using System.Collections.Generic; using UnityEngine; public class ShakeCamera : MonoBehaviour { private Vector3 shakePos = Vector3.zero; // Use this for initializa...原创 2018-04-12 15:49:31 · 2316 阅读 · 0 评论 -
unity3D跨屏显示
1.需求:一台电脑上链接着两个显示设备A,B,unity程序运行时,自动在第二块屏上B显示(unity3D默认是在主屏上显示的)2.情况一:两块屏的分辨率相同,如A:1920x1080 B:1920x1080,可在主相机中挂如下脚本:using System.Collections; using System.Collections.Generic; using UnityEngine; usin...原创 2018-04-12 15:29:49 · 3215 阅读 · 0 评论