c# 获取变量名称

摘要: 示例: public class Test { public int tInt; public bool tBool; } var t = new Test(); Console.WriteLine(t.tInt) ///打印 tInt public static string GetFieldNa 阅读全文
posted @ 2024-07-16 10:52 yungs 阅读(48) 评论(0) 推荐(0) 编辑

Unity WebGL的一些配置

摘要: 添加自定义值 方法:在网页模板中,添加 <title>公司名字 | {{{ PROJECT_NAME }}}</title> ///读取 PlayerSettings.GetTemplateCustomValue("PROJECT_NAME"); ///设置 PlayerSettings.SetTe 阅读全文
posted @ 2024-05-21 10:52 yungs 阅读(91) 评论(0) 推荐(0) 编辑

Unity Editor下运行DoTween动画

摘要: DOTweenEditorPreview.PrepareTweenForPreview(tar.GetTween()); DOTweenEditorPreview.Start(); 以Test脚本为例: public class UTest : MonoBehaviour { public Twee 阅读全文
posted @ 2024-05-10 11:36 yungs 阅读(120) 评论(0) 推荐(0) 编辑

Untiy开发脚本

摘要: 1、Inspector面板用代码控制Lock 1 Type t = typeof( UnityEditor.EditorWindow ).Assembly.GetType("UnityEditor.InspectorWindow"); 2 var window = UnityEditor.Edito 阅读全文
posted @ 2023-06-30 11:24 yungs 阅读(35) 评论(0) 推荐(0) 编辑

修改Unity创建时的脚本抬头

摘要: VS2015:C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\ItemTemplatesCache\CSharp\CSharp MonoBehaviour.zipvs2019 C:\Program Files (x86) 阅读全文
posted @ 2021-01-12 15:39 yungs 阅读(140) 评论(0) 推荐(0) 编辑

c# winform 获取ToolStripMenuItem的SourceControl

摘要: var s = sender as ToolStripMenuItem; var m = s.Owner as ContextMenuStrip; m.SourceControl.BackColor = cf.Color; 阅读全文
posted @ 2019-12-05 23:31 yungs 阅读(1172) 评论(0) 推荐(0) 编辑

Unity Slider 实现多段颜色

摘要: 1 public Slider slider; 2 public Image bg; 3 const int W = 256; 4 const int H = 256; 5 void Start () { 6 var hueTex = new Texture2D(256, 256); 7 var color = Color.red; 8 ... 阅读全文
posted @ 2019-07-17 17:16 yungs 阅读(1190) 评论(0) 推荐(0) 编辑

Unity tolua调用C#中的自定义对象的方法

摘要: Unity: 定义一个类 wrap方法: Mono: lua 脚本 OK 阅读全文
posted @ 2019-07-09 23:00 yungs 阅读(2085) 评论(0) 推荐(0) 编辑

Unity tolua 把传递自定义对象参数

摘要: 首先创建一个类,用于当作一个对象。 接着创建第二个类 对LuaTestA进行Lua绑定。 对LuaTestB进行Lua绑定。 Mono脚本 lua脚本:文件名为test.lua,放到streamingassets文件夹下 阅读全文
posted @ 2019-07-09 22:02 yungs 阅读(1314) 评论(0) 推荐(0) 编辑

Unity自带JsonUtility

摘要: 每一个类要加上 [System.Serializable] 阅读全文
posted @ 2019-05-10 16:42 yungs 阅读(336) 评论(0) 推荐(0) 编辑