码迷,mamicode.com
首页 >  
搜索关键字:raycast    ( 57个结果
Unity界面UGUI遮挡的问题
解决方法: 在使用Unity的UGUI时候,重叠的UI控件可能会导致某一个控件点击失败,如下图: 在前面的图片挡住了后面的Button,导致后面的Button无法触发点击事件,此时只要把图片的Image组件的Raycast Target的勾选取消即可解决遮挡的问题: 原理: 鼠标点击屏幕实际上是以点 ...
分类:编程语言   时间:2018-11-05 00:06:02    阅读次数:503
ThreeJs 选中物体事件
选中物体变红色demo: https://threejs.org/examples/#webgl_raycast_sprite From: https://www.cnblogs.com/xuejianxiyang/p/9732632.html ...
分类:Web程序   时间:2018-09-30 18:09:03    阅读次数:902
NGUI中 鼠标划出屏幕后,停止对 UIDragScrollView 的 press
using UnityEngine; /// /// NGUI中 鼠标划出屏幕后,停止对 UIDragScrollView 的 press /// public class CheckIsDragOverUI : MonoBehaviour { UIDragScrollView dragSV = n... ...
分类:其他好文   时间:2018-09-29 13:05:23    阅读次数:446
双击销毁物体
...
分类:其他好文   时间:2018-09-18 19:02:58    阅读次数:224
Unity简单的通过鼠标点击移动
public class PlayerController : MonoBehaviour { CharacterController cc; [SerializeField] float m_RotationSpeed = 10f; [SerializeField] private float s... ...
分类:移动开发   时间:2018-07-18 15:13:24    阅读次数:283
一堆小游戏制作的总结
1.鼠标点击移动 2. UI0.01说过了 100像素相当于1米 3. transform.Rotate(new Vector3(0, 0, -speed * Time.deltaTime));//试试? 4. 5. 6. 7. 8.显示在面板 9.暂停 yield return 0帧; 10.GD ...
分类:其他好文   时间:2018-06-17 21:48:00    阅读次数:342
转:TSDF in Kinect fusion
KinectFusion中用到的TSDF Fusion 原po:https://blog.csdn.net/qq_31785865/article/details/78524429 最近在看关于稠密三维重建的相关算法,看到了KinectFusion,KinectFusion是微软研究院研发的基于Ki ...
分类:其他好文   时间:2018-05-17 18:13:45    阅读次数:339
Unity —— 通过鼠标点击控制物体移动
1 //ClickMove - - 通过鼠标点击控制物体移动 2 3 using System.Collections; 4 using System.Collections.Generic; 5 using UnityEngine; 6 using UnityEngine.AI; // inclu ...
分类:移动开发   时间:2018-05-16 23:55:17    阅读次数:257
u3d任务
1.画布哪里有个Match竖版游戏最右反之。 2.shift +alt一起按 3.图片要设置纹理类型并且apply; 4.设置logo动画勾掉Raycast target ; 5.doTween localMove 6.子弹是scale. 7. using UnityEngine.SceneMana ...
分类:其他好文   时间:2018-01-27 20:18:51    阅读次数:213
unity中 UGUI的按下、拖动接口事件的实现
using UnityEngine; using System.Collections.Generic; using DG.Tweening; using UnityEngine.EventSystems; using UnityEngine.UI; public class testUI : Mo... ...
分类:编程语言   时间:2017-12-02 12:56:59    阅读次数:188
57条   上一页 1 2 3 4 ... 6 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!