摘要:
为了将博客园内容搬家至CSDN中 阅读全文
摘要:
//客户端 首先来个单例 using System.Collections;using System.Collections.Generic;using UnityEngine; public class Singleton<T> where T:class,new(){ private stati 阅读全文
摘要:
out 和 ref在c#的底层经常可以看到用到 out 和 ref 这两个关键字 但是之前没做深入了解,只是看了一下他怎么用 之前理解到:(这只是out和ref的区别)ref和out是成对使用的,形参和实参前面都需要添加的使用ref传递参数的时候,ref修饰的参数必须要有值,但是out可以使用一个未 阅读全文
摘要:
第一步 : 引用我们的编辑器命名空间 UnityEditor 第二步 :继承编辑器窗口类EditorWindow 第三步:写一个菜单栏 [MenuItem("Tool/SkillEditor")] 紧接着在在下面写一个静态方法用于打开编辑器窗口 第四部:用内置的OnGUI方法写其窗口里的内容 方法: 阅读全文
摘要:
using System.Collections;using System.Collections.Generic;using UnityEngine; public class SetBox : MonoBehaviour{ //这个是换鼠标图标 public Texture2D tex1, te 阅读全文
摘要:
1.(快捷键)选中一个clip 按下A键 显示所有clip 2.切换混合模式(摁住切换,松手还原,用久切换需点击按钮) 摁住1-3其中一个模式对应的数字 三种编辑模式 (1)mix(混合):当cilp产生重叠时,会进行混合 (2)Ripple(涟漪):当前clip和之后的clip保持相对位置,支持多 阅读全文
摘要:
首先创建timeLine并创建ctrl轨道 代码奉上 》 using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.UI;using UnityEngine.Timeli 阅读全文
摘要:
using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; using UnityEngine; using UnityEngine.UI; public class 阅读全文
摘要:
using System.Collections;using System.Collections.Generic;using System.Linq;using UnityEngine;using UnityEngine.UI;/// <summary>/// 雷达图 And 圆/// 提示:// 阅读全文
摘要:
using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.EventSystems;/// <summary>/// 写的是一个摇杆的代码/// 步骤和使用/// 1.因 阅读全文