
unity学习之路
fl_fa_fi
记性不好,蛮记一下
展开
-
C#协程无法停止
一开始开启协程时需要用函数名字符串作为参数,结束时也用字符串。否则不能结束。原创 2018-06-27 15:48:27 · 1364 阅读 · 1 评论 -
射线检测
RaycastHit hit; //第一个参数发射射线位置,方向,out物体,距离 if(Physics.Raycast(transform.position+Vector3.up*0.3f,transform.forward,out hit,4.5f)) { if (hit.collider...原创 2018-08-13 15:37:44 · 215 阅读 · 0 评论 -
animator 的matchtarget目标匹配
//anim.IsInTransition(0)切换期间不能使用matchtarget. if (anim.GetCurrentAnimatorStateInfo(0).IsName("Vault")&&!anim.IsInTransition(0)) { print(matchTarget); //...原创 2018-08-13 16:53:43 · 781 阅读 · 0 评论 -
animator Curves
参数值的匹配。在代码中获取参数就可以根据动画播放的时间控制别的shu'x属性。原创 2018-08-13 17:04:39 · 242 阅读 · 0 评论 -
unity的存档方式
停止游戏的时间://时间缩放比例,0暂停游戏的时间,1开始 Time.timeScale = 0;//unity存储方法的储存//保存音乐开关的状态,0代表关闭状态,1开启 PlayerPrefs.SetInt(PreKey.MUSICON, 1);//unity的PlayerPrefs存储方法的读取 if (PlayerPre...原创 2018-08-19 16:12:20 · 880 阅读 · 0 评论 -
游戏存档
参考:https://blog.youkuaiyun.com/y1196645376/article/details/52541882 //需要序列化的数据存储类[System.Serializable]public class Save 二进制的存档方法using System.IO;using System.Runtime.Serialization.Formatters.Bina...原创 2018-08-19 20:53:36 · 961 阅读 · 0 评论 -
鼠标的限制
通过比例来控制鼠标的移动float xPosPercent = Input.mousePosition.x / Screen.width; float yPosPercent = Input.mousePosition.y / Screen.height; float xAngle = -Mathf.Clamp(yPosPercent * ma...原创 2018-08-19 21:00:55 · 164 阅读 · 0 评论 -
获取面板上rotation的值
转:unity获取真实旋转数据 - 雨夜泥沙 - 博客园 https://www.cnblogs.com/kaohum/p/7131826.html // 获取原生值 System.Type transformType = transform.GetType(); PropertyInfo m_propertyInfo_rotationOrder = transformType...转载 2018-08-29 14:26:41 · 2278 阅读 · 2 评论 -
Mathf函数错误
Mathf.Cos 传入参数为弧度值,并非角度值,需要将角度转为弧度再传入。 1 Mathf.Cos(degree * Mathf.Deg2Rad); //degree 为角度值 调试了一下午发现是这里错误,要吐血...转载 2018-09-06 15:11:53 · 292 阅读 · 0 评论 -
智能交通系统学习笔记——汽车行驶和寻路
LOD Group(层次细节)由于场景变大,就要更加考虑性能的问题。有一种管理方法,取决于摄像机离对象的远近,网格有不同的细节级别,这就是所谓的细节级别( Level of Detail)(LOD的缩写)GameObject.CompareTag使用GameObject.CompareTag代替GameObject.tag:GameObject.tag会在内部循环调用对象分配的标签属性...原创 2019-04-16 10:13:35 · 727 阅读 · 0 评论 -
相机跟随
private Transform player; private Vector3 offset; private float smoothing = 3; // Use this for initialization void Start () { player = GameObject.FindGameObjectWithTag("Play...原创 2018-08-13 15:12:54 · 149 阅读 · 0 评论 -
协程帧动画
//负责移动的协程 private IEnumerator MoveCoroutine(int newX,int newY,float time) { sweet.X = newX; sweet.Y = newY; //每一帧移动一点点 Vector3 startPos = transform.position; ...原创 2018-08-08 09:48:32 · 158 阅读 · 0 评论 -
TimeLine 控制声音的播放大小
一、将声音拖拽到轨道上二、为声音指定一个audiosource三、zuih最重要一点 !!!audiaudiosource的play on awake要去除勾选!!不然没有用原创 2018-08-15 10:20:27 · 2346 阅读 · 1 评论 -
unity 多人联机相机设置
https://blog.youkuaiyun.com/l773575310/article/details/72677128转载 2018-06-27 21:56:03 · 1669 阅读 · 0 评论 -
甜品消消乐整理
糖果: Enum SweetType EMPTY, NORMAL, BARRIER, ROW_CLEAR, COLUMN_CLEAR, RAINBOWCANDY, COUNT GameSweet 用于存储糖果在面板上的位置,提供自己创建的糖果的属性,并且处理鼠...原创 2018-08-10 10:59:21 · 1287 阅读 · 0 评论 -
糖果消消乐笔记
1、spriteRender:order in layer 设置图片第几层。2、游戏管理只需要实例化一次,所以做成单例模式。awake中实例化:private static GameManager _instance; public static GameManager Instance { get { return ...原创 2018-08-10 11:00:44 · 440 阅读 · 0 评论 -
IK动画
IK动画直接we位置的匹配。寻找定位点勾选层中的IK pass //每帧都运行 private void OnAnimatorIK(int layerIndex) { if (layerIndex == 1) { int houldLogWeight=anim.GetBool(isHoldLogID)?1:0; ...原创 2018-08-14 10:22:15 · 514 阅读 · 0 评论 -
游戏背包系统单例模式
private static KnapsackManager _instance; public static KnapsackManager Instance { get { return _instance; } } void Awake() { _instance = this; }原创 2018-08-02 11:04:01 · 940 阅读 · 0 评论 -
unity prefabs 查找实例化
新建文件夹Resources,将Prefabs文件夹放到该文件夹下,实例化代码如下:GameObject itemPrefabs= Resources.Load<GameObject>("Prefabs/Item"); itemPrefabs.GetComponent<ItemUI>().UpateItemName(temp.Name); ...原创 2018-08-02 11:06:40 · 863 阅读 · 0 评论 -
制作随文字数量变化大小的提示框
新建一个image组件,设置组件的背景。命名为background、新建子物体text,设置text文字大小和颜色。命名为content复制content,并且拖拽为image的父物体,命名为tooltip。为其添加组件ContentSizeFitter。设置Horizontal Fit 和Vectical fit为PreferredSize。将content也拖成Tooltip的子物...原创 2018-08-02 11:45:21 · 564 阅读 · 0 评论 -
鼠标的进入和退出
public class GridUI : MonoBehaviour ,IPointerEnterHandler,IPointerExitHandler //实现两个接口,用于进入和退出{ //action system上的委托,无参数无返回值 public static Action<Transform> OnEnter; public stati...原创 2018-08-02 14:37:28 · 320 阅读 · 0 评论 -
TimeLine 角色播放动画会回到原点的解决
一种方法:状态机控制角色的位置:勾选apply Root Motion需要给角色的animator controller 添加状态机。预览的效果还是在原点,但是运行的时候会在游戏的位置 第二种方法:点击timeline中角色的轨道,在inspector面板中goux勾选apply track offset 之后下面的position和rotation就可以设置位置和xuna...原创 2018-08-14 18:02:12 · 6877 阅读 · 6 评论 -
unity 生成系统的长方体
GameObject go = GameObject.CreatePrimitive(PrimitiveType.Cube);原创 2019-09-03 18:19:59 · 1450 阅读 · 0 评论