Unity实现自定义图集(二)

以下内容是根据Unity 2020.1.0f1版本进行编写的

实现一个自定义图集,该怎么入手呢。首先简单思考一下unity是怎么实现图集的。
因为unity的ui部分是开源的,所以我们可以看到UGUI的源代码,另外,Unity的内置Shader也是开源的,可以直接在官网下载(在下载的网页选择Built in shaders下载即可):https://unity.com/releases/editor/archive

首先,图集在Unity编辑器中是可编辑的,因此,需要实现一个自定义图集的Inspector面板,并定义好图集的基础属性,方便使用。

1、实现自定义图集类MyAtlas

using System.Collections.Generic;
using UnityEngine;

[CreateAssetMenu(fileName = "MyAtlas", menuName = "My Atlas")]
public class MyAtlas : ScriptableObject
{
   
    public string atlasName = "";
    public List<string> guids = new List<string>();
    public List<string> packableObjects = new List<string>();
    public List<string> realPackObjs = new List<string>();
    public List<UnityEngine.Object> objs = new List<Object>();
}

首先,定义自定义的图集类MyAtlas,这里只定义Inspector面板需要用到的变量。需要继承ScriptableObject类,否则无法实现自定义类型的后处理导入
其中,atlasName是图集名字,guids是图集包含全部图片的guid,realPackObjs是图集包含全部图片的路径,Objs是显示在Inspector面板的Object,packableObjects是Objs对应的路径,因为有可能是文件夹,所以需要和realPackObjs区分开来。
在这里插入图片描述
在这里插入图片描述
右键新建一个MyAtlas文件,如上图,这样可以了

2、实现自定义图集类的Inspector面板

using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using UnityEngine;

public class CommonFunc : MonoBehaviour
{
   
	public static void SeachFile(string path, List<string> files, string[] extensions)
	{
   
		if (Directory.Exists(path))
		{
   
			DirectoryInfo di = new DirectoryInfo(path);
			FileSystemInfo[] fsInfos = di.GetFileSystemInfos();
			bool isSkip;
			foreach (FileSystemInfo fsInfo in fsInfos)
			{
   
				isSkip = true;
				if (fsInfo is DirectoryInfo)
				{
   
					SeachFile(fsInfo.FullName, files, extensions);
				}
				if (fsInfo.Name.Contains(".meta"))
				{
   
					continue;
				}
				foreach (string extension in extensions)
				{
   
					if (fsInfo.Name.Contains(extension))
					{
   
						isSkip = false;
						break;
					}
				}
				if (!isSkip)
				{
   
					string fileN = fsInfo.FullName;
					string ss = "Assets" + fileN.Replace("\\", "/").Replace(Application.dataPath, "");
					if (!files.Contains(ss))
					{
   
						files.Add(ss);
					}
				}
			}
		}
	}

	public static List<string> GetAllFilesInDirectory(string path, string searchParttern, List<string> list = null, bool isUnityPath = false)
	{
   
		if (list == null)
		{
   
			list = new List<string>();
		}
		var files = Directory.GetFiles(path, searchParttern, SearchOption.AllDirectories);
		foreach (var file in files)
		{
   
			string filePath = file.Replace("\\", "/");
			if (isUnityPath)
            {
   
				filePath = GetUnityPath(filePath);
            }
			list.Add(filePath);
		}
		return list;
	}

	public static string GetMD5Hash(string filePath)
	{
   
		MD5 md5 = new MD5CryptoServiceProvider();
		return BitConverter.ToString(md5.ComputeHash(File.ReadAllBytes(filePath))).Replace("-", "").ToLower();
	}

	public static string GetUnityPath(string path)
	{
   
		string newPath = path;
		if (newPath.Contains(Application.dataPath))
		{
   
			newPath = newPath.Replace(Application.dataPath, "Assets");
		}
		if (newPath.Contains(Application.dataPath.Replace("/", "\\")))
		{
   
			newPath = newPath.Replace(Application.dataPath.Replace("/", "\\"), "Assets");
		}
		if (newPath.Contains(Application.dataPath.Replace("\\", "/")))
		{
   
			newPath = newPath.Replace(Application.dataPath.Replace("\\", "/"), "Assets");
		}
		newPath = newPath.Replace("\\", "/");
		return newPath;
	}

	public static string GetSystemPath(string path)
	{
   
		string newPath = path;
		if (newPath.StartsWith("Assets"))
		{
   
			newPath = Application.dataPath.Replace("Assets", "") + newPath;
		}
		newPath = newPath.Replace("/", "\\");
		return newPath;
	}

	public class Messagebox
	{
   
		[DllImport("User32.dll", SetLastError = true, ThrowOnUnmappableChar = true, CharSet = CharSet.Auto)]
		public static extern int MessageBox(IntPtr handle, String message, String title, int type);
	}
}

首先实现一个通用的类CommonFunc,包含一些通用方法,如文件路径转换UnityPath,或者转换为系统路径,等等。

using System.Collections.Generic;
using System.IO;
using UnityEditor;
using UnityEditor.UI;
using UnityEditorInternal;
using UnityEngine;

[
技术选型 【后端】:Java 【框架】:springboot 【前端】:vue 【JDK版本】:JDK1.8 【服务器】:tomcat7+ 【数据库】:mysql 5.7+ 项目包含前后台完整源码。 项目都经过严格调试,确保可以运行! 具体项目介绍可查看博主文章或私聊获取 助力学习实践,提升编程技能,快来获取这份宝贵的资源吧! 在当今快速发展的信息技术领域,技术选型是决定一个项目成功与否的重要因素之一。基于以下的技术栈,我们为您带来了一份完善且经过实践验证的项目资源,让您在学习和提升编程技能的道路上事半功倍。以下是该项目的技术选型和其组件的详细介绍。 在后端技术方面,我们选择了Java作为编程语言。Java以其稳健性、跨平台性和丰富的库支持,在企业级应用中处于领导地位。项目采用了流行的Spring Boot框架,这个框架以简化Java企业级开发而闻名。Spring Boot提供了简洁的配置方式、内置的嵌入式服务器支持以及强大的生态系统,使开发者能够更高效地构建和部署应用。 前端技术方面,我们使用了Vue.js,这是一个用于构建用户界面的渐进式JavaScript框架。Vue以其易上手、灵活和性能出色而受到开发者的青睐,它的组件化开发思想也有助于提高代码的复用性和可维护性。 项目的编译和运行环境选择了JDK 1.8。尽管Java已经推出了更新的版本,但JDK 1.8依旧是一种成熟且稳定的选择,广泛应用于各类项目中,确保了兼容性和稳定性。 在服务器方面,本项目部署在Tomcat 7+之上。Tomcat是Apache软件基金会下的一个开源Servlet容器,也是应用最为广泛的Java Web服务器之一。其稳定性和可靠的性能表现为Java Web应用提供了坚实的支持。 数据库方面,我们采用了MySQL 5.7+。MySQL是一种高效、可靠且使用广泛的关系型数据库管理系统,5.7版本在性能和功能上都有显著的提升。 值得一提的是,该项目包含了前后台的完整源码,并经过严格调试,确保可以顺利运行。通过项目的学习和实践,您将能更好地掌握从后端到前端的完整开发流程,提升自己的编程技能。欢迎参考博主的详细文章或私信获取更多信息,利用这一宝贵资源来推进您的技术成长之路!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值