Unity - 模拟Sprite Packer合并多个Sprite

2023-12-01 19:10

本文主要是介绍Unity - 模拟Sprite Packer合并多个Sprite,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Unity - 模拟Sprite Packer合并多个Sprite


现在做一个卡牌Demo,由于没有沟通好,动画师为了做Anima2D动画方便,把角色每个部位拆分成单个Sprite,这样肯定是不行的,不仅加大了容量,运行时效率也不高。但是由于动画已经做好了,再回去手动合并再修改Anima2D非常麻烦,只好让程序实现一个快捷工具,把单个的Sprite合成一张大图集,把与单个Sprite绑定的Anima2D数据迁移到大图集。忙了一天总算弄好了,现在记录一下。

Sprite Packer

把Sprite合并成图集其实是Unity内置的功能——Sprite Packer,Sprite Packer会把相同Packing Tag的Sprite合并成大图集,我们要做的就是模拟Sprite Packer。简单的一个思路是:把要打包的Sprite放到一个文件下;得到所有单独的Sprite;生成单独的Texture;打包;切分Texture。

using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
using System.IO;
using System.Linq;namespace Utility
{public class AtlasTest{[UnityEditor.MenuItem("SpriteAtlas/CreateAtlas")]public static void CreateAtlas(){string spritePath = string.Empty;spritePath = EditorUtility.OpenFolderPanel("选择文件夹", "", "");List<Sprite> sprites = new List<Sprite>();List<Texture2D> newTexs = new List<Texture2D>();List<string> extensions = new List<string>() { ".png", ".jpg", ".psd" };// 找出单独的spritestring[] files = Directory.GetFiles(spritePath, "*.*", SearchOption.AllDirectories).Where(s => extensions.Contains(Path.GetExtension(s).ToLower())).ToArray();for (int i = 0; i < files.Length; i++){string relativePath = files[i].Substring(files[i].IndexOf("Asset")).Replace('\\', '/');Object[] newSprites = AssetDatabase.LoadAllAssetsAtPath(relativePath);for (int j = 0; j < newSprites.Length; j++){if ((newSprites[j] as Sprite) != null)sprites.Add(newSprites[j] as Sprite);}}// 把单独的sprite变化成texturefor (int i = 0; i < sprites.Count; i++){Rect t_Rect = sprites[i].rect;Texture2D t_SourceTex = sprites[i].texture;string pathStr = AssetDatabase.GetAssetPath(sprites[i].texture);// 开启源Spirte的可读TextureImporter t_Importer = AssetImporter.GetAtPath(pathStr) as TextureImporter;t_Importer.isReadable = true;t_Importer.SaveAndReimport();AssetDatabase.ImportAsset(pathStr);// 裁剪出新的TextureColor[] t_Colors = t_SourceTex.GetPixels((int)t_Rect.x, (int)t_Rect.y, (int)t_Rect.width, (int)t_Rect.height);newTexs.Add(new Texture2D((int)t_Rect.width, (int)t_Rect.height));newTexs[i].SetPixels(t_Colors);}// 打包成Atlasstring atlasPath = spritePath + "/AllAtlas.png";string atlasRelativePath = atlasPath.Substring(atlasPath.IndexOf("Assets"));Texture2D atlasTex = new Texture2D(1024, 1024);Rect[] atlasRects = atlasTex.PackTextures(newTexs.ToArray(), 1, 4096);SpriteMetaData[] atlasSheets = new SpriteMetaData[atlasRects.Length];File.WriteAllBytes(atlasPath, atlasTex.EncodeToPNG());// 设置Atlas的spritefor (int i = 0; i < atlasSheets.Length; i++){SpriteMetaData t_Meta = new SpriteMetaData();t_Meta.name = sprites[i].name;t_Meta.rect = atlasRects[i];t_Meta.rect.Set(t_Meta.rect.x * atlasTex.width,t_Meta.rect.y * atlasTex.height,t_Meta.rect.width * atlasTex.width,t_Meta.rect.height * atlasTex.height);t_Meta.alignment = 9;Rect t_Rect = sprites[i].rect;t_Meta.pivot = new Vector2(sprites[i].pivot.x / t_Rect.width, sprites[i].pivot.y / t_Rect.height);atlasSheets[i] = t_Meta;}// 设置Atlas Texture属性TextureImporter atlas_Importer = AssetImporter.GetAtPath(atlasRelativePath) as TextureImporter;atlas_Importer.textureType = TextureImporterType.Sprite;atlas_Importer.spriteImportMode = SpriteImportMode.Multiple;//imp.textureCompression = TextureImporterCompression.Uncompressed;atlas_Importer.mipmapEnabled = false;atlas_Importer.spritesheet = atlasSheets;atlas_Importer.SaveAndReimport();AssetDatabase.ImportAsset(atlasRelativePath);AssetDatabase.Refresh();}}
}

结果:两张Atlas和一个单独的Sprite合并成最后一张大图集,其实前两张Atlas已经是合并过一次的了
在这里插入图片描述

Anima2D数据迁移

这里就做简单的数据的位置偏移就可以了,伪代码如下。

Vector2 offset = new Vector2(newSprite.rect.x - oldSprite.rect.x, newSprite.rect.y - oldSprite.rect.y);
spriteMesh.sprite = newSprite;
spriteMeshData.pivotPoint += offset;
for (int k = 0; k < spriteMeshData.vertices.Length; k++)spriteMeshData.vertices[k] += offset;
SpriteMeshUtils.UpdateAssets(spriteMesh, spriteMeshData);
AssetDatabase.SaveAssets();
AssetDatabase.Refresh();

这篇关于Unity - 模拟Sprite Packer合并多个Sprite的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/442355

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

day-51 合并零之间的节点

思路 直接遍历链表即可,遇到val=0跳过,val非零则加在一起,最后返回即可 解题过程 返回链表可以有头结点,方便插入,返回head.next Code /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode() {}*

hdu4431麻将模拟

给13张牌。问增加哪些牌可以胡牌。 胡牌有以下几种情况: 1、一个对子 + 4组 3个相同的牌或者顺子。 2、7个不同的对子。 3、13幺 贪心的思想: 对于某张牌>=3个,先减去3个相同,再组合顺子。 import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOExcepti

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点

每日一题|牛客竞赛|四舍五入|字符串+贪心+模拟

每日一题|四舍五入 四舍五入 心有猛虎,细嗅蔷薇。你好朋友,这里是锅巴的C\C++学习笔记,常言道,不积跬步无以至千里,希望有朝一日我们积累的滴水可以击穿顽石。 四舍五入 题目: 牛牛发明了一种新的四舍五入应用于整数,对个位四舍五入,规则如下 12345->12350 12399->12400 输入描述: 输入一个整数n(0<=n<=109 ) 输出描述: 输出一个整数

【算法专场】模拟(下)

目录 前言 38. 外观数列 算法分析 算法思路 算法代码 1419. 数青蛙 算法分析 算法思路 算法代码  2671. 频率跟踪器 算法分析 算法思路 算法代码 前言 在前面我们已经讲解了什么是模拟算法,这篇主要是讲解在leetcode上遇到的一些模拟题目~ 38. 外观数列 算法分析 这道题其实就是要将连续且相同的字符替换成字符重复的次数+

模拟实现vector中的常见接口

insert void insert(iterator pos, const T& x){if (_finish == _endofstorage){int n = pos - _start;size_t newcapacity = capacity() == 0 ? 2 : capacity() * 2;reserve(newcapacity);pos = _start + n;//防止迭代

PHP实现二叉树遍历(非递归方式,栈模拟实现)

二叉树定义是这样的:一棵非空的二叉树由根结点及左、右子树这三个基本部分组成,根据节点的访问位置不同有三种遍历方式: ① NLR:前序遍历(PreorderTraversal亦称(先序遍历)) ——访问结点的操作发生在遍历其左右子树之前。 ② LNR:中序遍历(InorderTraversal) ——访问结点的操作发生在遍历其左右子树之中(间)。 ③ LRN:后序遍历(PostorderT