资源简介
Unity编辑器语言开发的,拖入项目Assest目录下,点击Unity编辑器上方栏的“我的拓展编辑器”即可打开使用。项目展示写了一个博客:https://blog.csdn.net/qq_37835111/article/details/86083860
欢迎大家讨论
代码片段和文件信息
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System.IO;
using System;
using System.Linq;
using System.Text;
namespace MyHong
{
public class Hong : EditorWindow
{
private AllDefine allDefine;
private AllChannel allChannel;
private bool isEditing = false;
private string[] currentArrCurrentPresetStr = new string[] { };//设置模式下绘制预设所用
private int currentChooseIndex;//设置模式下绘制预设所用
private Channel currentChannel;//设置模式下的暂时变量,因为应用过后才改变txt,所以定义一个暂时变量
private Vector2 currentScrollPosition = Vector2.zero;//当前滚轴的位置,绘制宏列表所用
private AllChannel tempAllChannel;//编辑模式下的temp
private string tempNotice = ““;//编辑模式下添加或者移除的 警告
private string tempInputName;//编辑模式下输入的名称
private Channel tempChannel;//编辑模式下的temp预设
private string[] tempArrCurrentPresetStr = new string[] { };//编辑模式下temp
private int tempCurrentChooseIndex;//编辑模式下的temp
[MenuItem(“我的扩展工具/我的宏定义管理器“)]
private static void MenuInit()
{
//展示窗口
Hong window = EditorWindow.GetWindow(“宏定义管理器“);
window.minSize = new Vector2(500 500);
}
void OnEnable()
{
//读取Json格式的配置表
TextAsset defineTextAsset = Resources.Load(“Define“);
TextAsset presetTextAsset = Resources.Load(“Channel“);
try
{
allDefine = JsonUtility.FromJson(defineTextAsset.text) ?? new AllDefine();
}
catch (Exception)
{
allDefine = new AllDefine();
}
try
{
allChannel = JsonUtility.FromJson(presetTextAsset.text) ?? new AllChannel();
}
catch (Exception)
{
allChannel = new AllChannel();
}
currentArrCurrentPresetStr = new string[allChannel.lisChannel.Count];
for (int i = 0; i < allChannel.lisChannel.Count; i++)
{
currentArrCurrentPresetStr[i] = allChannel.lisChannel[i].channelName;
}
currentChooseIndex = allChannel.currentChooseIndex;
currentChannel = allChannel.lisChannel.Count > currentChooseIndex ? allChannel.lisChannel[currentChooseIndex] : null;
//allDefine.lisDefine.Add(new Define() { name = “TEST1“ describe = “Test1Describe“ });
//allDefine.lisDefine.Add(new Define() { name = “TEST2“ describe = “Test2Describe“ });
//allDefine.lisDefine.Add(new Define() { name = “TEST3“ describe = “Test3Describe“ });
//allDefine.lisDefine.Add(new Define() { name = “TEST4“ describe = “Test4Describe“ });
//allDefine.lisDefine.Add(new Define() { name = “TEST5“ describe = “Test5Describe“ });
//s
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-01-05 16:35 hong\
目录 0 2019-01-07 17:46 hong\Editor\
文件 24872 2019-01-07 17:46 hong\Editor\Hong.cs
文件 284 2019-01-05 16:32 hong\Editor\Hong.cs.me
文件 213 2019-01-05 16:35 hong\Editor.me
目录 0 2019-01-07 17:35 hong\Resources\
文件 284 2019-01-08 16:25 hong\Resources\Channel.json
文件 199 2019-01-07 14:43 hong\Resources\Channel.json.me
文件 503 2019-01-07 14:43 hong\Resources\Define.json
文件 199 2019-01-07 14:43 hong\Resources\Define.json.me
文件 213 2019-01-05 16:35 hong\Resources.me
- 上一篇:并行粒子群优化算法的设计与实现
- 下一篇:基于改进烟花算法的web服务组合优化
相关资源
- 录音.unitypackage
- GetGPSInfo
- 解决getRunningAppProcesses只得到本应用的
- MAX修改器动画导入UNITY
- ubuntu-16直接在迅雷里可
- NWH Vehicle Physics.txt
- 中南大学实验:SOCKET通信UDP协议-发送
- 武士2复仇源码
- unity3d跑酷游戏源码
- 恐怖密室++精细场景模型,高质量灯光
- WPS Ubuntu缺少字体
-
Jli
nk unlock for F1 - unity 某校园场景漫游源码
- Louvain快速社区发现算法Fast unfolding算
- CircleOfPoison.rar
- LeanTouchpro
- unity 雨雪的粒子特效
- Unity 材质变形器
- unity曲线滑动
- Unity 中实现按住鼠标左键上下左右拖
- unity包 雪花特效
- unity的GPS的测试demo和代码
- 解决Cannot resolve unit name的错误
- UNIX基础视频
- ELMfunction.rar
- PCL中BoundaryEstimation边界提取代码
- Unity3d动态创建excel以及写入数据
- mapapi.bundle
- unity ui框架
- xlua+unity单机版捕鱼视频教程+源码
评论
共有 条评论