本文原创,转载请注明出处http://www.cnblogs.com/AdvancePikachu/p/7908754.html 前段时间在做一个类似AnimationCurve的可视化编辑器,其中在做内部缩放的时候略有所感,把利用滚轮+焦点的缩放分享一下. 其中一个脚本处理内部逻辑 public class ResizeScrollEvent : UnityEvent<float> { } public class UIScroll : MonoBehaviour, IScrollHandl…
游戏开发中有时候会遇到在UI上显示模型和特效的需求,这次需要在ScrollView上显示.我们使用UGUI的Screen Space - Camera模式,修改模型和特效的layer使之显示在UI上面,但是会遇到ScrollView的mask无法剔除模型和特效的问题. 解决思路:计算出ScrollView的显示矩形框的世界坐标和尺寸,传给模型和特效的shader,在shader里判断这个像素的世界坐标是否超过矩形框,来判断是否显示图像. C#代码部分: using System.Collecti…
内容不多,一个脚本,直接上代码 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Move : MonoBehaviour { ; public float distance_v; public float distance_h; ; ; ; //越大,头抬得越高 ; //越小,头抬得越低 privat…
using UnityEngine; using System.Collections; public class BgPicScript : MonoBehaviour { // Use this for initialization public UITexture bg; void Start () { Debug.Log("device宽高: " + Screen.width + "_" + Screen.height); UIRoot root = Gam…
①不同Camera的Depth.(大在前,小在后)②同Camera的SortingLayer.(下在前,上在后)③同SortingLayer下的Order in Layer.(大在前,小在后)④同Order in Layer下的Z轴.(小在前,大在后) 注意: 如果是多个Canvas的渲染先后顺序 http://blog.csdn.net/huutu/article/details/43636241调Canvas下面有一个Sort Order值,默认为0,越大越在后面. 创建任意UGUI元素时自…
在Editor下监听按键有以下几种方式: 自定义菜单栏功能: using UnityEngine; using UnityEditor; public static class MyMenuCommands { [MenuItem("My Commands/First Command _p")] static void FirstCommand() { Debug.Log("You used the shortcut P"); } [MenuItem("M…