mirror of
https://github.com/maxartz15/MA_TextureAtlasser.git
synced 2024-11-09 23:42:56 +01:00
Export presets, wrap uv's, bugfixes and formatting.
[MA_TextureAtlas] Updated export window to use scriptable asset export presets. The option to wrap uv's (default = true). Bigfixes and code formatting.
This commit is contained in:
parent
e81a4ec119
commit
a728366035
@ -16,7 +16,7 @@ namespace MA_TextureAtlasserPro
|
|||||||
public MA_TextureAtlasserProQuad selectedTextureQuad;
|
public MA_TextureAtlasserProQuad selectedTextureQuad;
|
||||||
private Rect editorWorkRect;
|
private Rect editorWorkRect;
|
||||||
public bool showTextures = false;
|
public bool showTextures = false;
|
||||||
|
public MA_TextureAtlasserProExportSettings exportSettings;
|
||||||
|
|
||||||
//Data
|
//Data
|
||||||
public Vector2 textureAtlasSize;
|
public Vector2 textureAtlasSize;
|
||||||
|
@ -0,0 +1,63 @@
|
|||||||
|
using UnityEngine;
|
||||||
|
using System.Collections;
|
||||||
|
using MA_Texture;
|
||||||
|
|
||||||
|
namespace MA_TextureAtlasserPro
|
||||||
|
{
|
||||||
|
[System.Serializable]
|
||||||
|
public class MA_TextureAtlasserProExportSettings : ScriptableObject
|
||||||
|
{
|
||||||
|
[HideInInspector]
|
||||||
|
public bool canModify = true;
|
||||||
|
|
||||||
|
public ModelExportSettings modelExportSettings = new ModelExportSettings();
|
||||||
|
public TextureExportSettings textureExportSettings = new TextureExportSettings();
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Serializable]
|
||||||
|
public class ModelExportSettings
|
||||||
|
{
|
||||||
|
[Header("Model settings:")]
|
||||||
|
public ModelFormat modelFormat = ModelFormat.Obj;
|
||||||
|
public bool replaceModel = false;
|
||||||
|
public bool uvFlipY = true;
|
||||||
|
public int uvChannel = 0;
|
||||||
|
public bool uvWrap = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Serializable]
|
||||||
|
public class TextureExportSettings
|
||||||
|
{
|
||||||
|
[Header("Texture settings:")]
|
||||||
|
public TextureFormat textureFormat = TextureFormat.Png;
|
||||||
|
public TextureType textureType = TextureType.Default;
|
||||||
|
public MA_TextureUtils.TextureScaleMode textureScaleMode = MA_TextureUtils.TextureScaleMode.Bilinear;
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum ExportPreset
|
||||||
|
{
|
||||||
|
Custom,
|
||||||
|
Default,
|
||||||
|
Sprites,
|
||||||
|
ReplaceObjMeshes
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum ModelFormat
|
||||||
|
{
|
||||||
|
None,
|
||||||
|
Obj
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum TextureFormat
|
||||||
|
{
|
||||||
|
None,
|
||||||
|
Png
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum TextureType
|
||||||
|
{
|
||||||
|
Default,
|
||||||
|
Sprite,
|
||||||
|
SpriteSliced
|
||||||
|
}
|
||||||
|
}
|
@ -8,37 +8,12 @@ using MA_Texture;
|
|||||||
|
|
||||||
namespace MA_TextureAtlasserPro
|
namespace MA_TextureAtlasserPro
|
||||||
{
|
{
|
||||||
public enum ExportPreset
|
|
||||||
{
|
|
||||||
Custom,
|
|
||||||
Default,
|
|
||||||
Sprites,
|
|
||||||
ReplaceObjMeshes
|
|
||||||
}
|
|
||||||
|
|
||||||
public enum ModelFormat
|
|
||||||
{
|
|
||||||
None,
|
|
||||||
Obj,
|
|
||||||
ReplaceObj
|
|
||||||
}
|
|
||||||
|
|
||||||
public enum TextureFormat
|
|
||||||
{
|
|
||||||
None,
|
|
||||||
Png
|
|
||||||
}
|
|
||||||
|
|
||||||
public enum TextureType
|
|
||||||
{
|
|
||||||
Default,
|
|
||||||
Sprite,
|
|
||||||
SpriteSliced
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class MA_TextureAtlasserProUtils
|
public static class MA_TextureAtlasserProUtils
|
||||||
{
|
{
|
||||||
public const string SETTINGSASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Settings/";
|
public const string SETTINGSASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Settings/";
|
||||||
|
public const string EXPORTSETTINGSASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Settings/ExportSettings/";
|
||||||
public const string SAVEASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Atlasses/";
|
public const string SAVEASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Atlasses/";
|
||||||
public const string LOADASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Atlasses/";
|
public const string LOADASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Atlasses/";
|
||||||
public const string EXPORTASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Exports/";
|
public const string EXPORTASSETPATH = "Assets/MA_ToolBox/MA_TextureAtlasserPro/Exports/";
|
||||||
@ -75,6 +50,38 @@ namespace MA_TextureAtlasserPro
|
|||||||
return _settings;
|
return _settings;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static MA_TextureAtlasserProExportSettings CreateExportSettings(string name, bool canModify = true)
|
||||||
|
{
|
||||||
|
MA_TextureAtlasserProExportSettings _settings = ScriptableObject.CreateInstance<MA_TextureAtlasserProExportSettings>();
|
||||||
|
_settings.canModify = canModify;
|
||||||
|
|
||||||
|
if (_settings != null)
|
||||||
|
{
|
||||||
|
AssetDatabase.CreateAsset(_settings, EXPORTSETTINGSASSETPATH + name + ".asset");
|
||||||
|
AssetDatabase.SaveAssets();
|
||||||
|
AssetDatabase.Refresh();
|
||||||
|
|
||||||
|
return _settings;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static MA_TextureAtlasserProExportSettings LoadExportSettings()
|
||||||
|
{
|
||||||
|
string name = "MA_DefaultExportSettings";
|
||||||
|
MA_TextureAtlasserProExportSettings _settings = AssetDatabase.LoadAssetAtPath(EXPORTSETTINGSASSETPATH + name + ".asset", typeof(MA_TextureAtlasserProExportSettings)) as MA_TextureAtlasserProExportSettings;
|
||||||
|
|
||||||
|
if (_settings == null)
|
||||||
|
{
|
||||||
|
_settings = CreateExportSettings(name, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
return _settings;
|
||||||
|
}
|
||||||
|
|
||||||
public static MA_TextureAtlasserProAtlas CreateTextureAtlas(string name, Vector2 size)
|
public static MA_TextureAtlasserProAtlas CreateTextureAtlas(string name, Vector2 size)
|
||||||
{
|
{
|
||||||
MA_TextureAtlasserProAtlas _atlas = ScriptableObject.CreateInstance<MA_TextureAtlasserProAtlas>();
|
MA_TextureAtlasserProAtlas _atlas = ScriptableObject.CreateInstance<MA_TextureAtlasserProAtlas>();
|
||||||
@ -132,8 +139,10 @@ namespace MA_TextureAtlasserPro
|
|||||||
{
|
{
|
||||||
atlas.textureGroupRegistration = new List<MA_TextureGroupRegistration>();
|
atlas.textureGroupRegistration = new List<MA_TextureGroupRegistration>();
|
||||||
|
|
||||||
MA_TextureGroupRegistration groupRegistration = new MA_TextureGroupRegistration();
|
MA_TextureGroupRegistration groupRegistration = new MA_TextureGroupRegistration
|
||||||
groupRegistration.name = DEFAULTTEXTUREGROUPNAME;
|
{
|
||||||
|
name = DEFAULTTEXTUREGROUPNAME
|
||||||
|
};
|
||||||
|
|
||||||
atlas.textureGroupRegistration.Add(groupRegistration);
|
atlas.textureGroupRegistration.Add(groupRegistration);
|
||||||
}
|
}
|
||||||
@ -171,6 +180,11 @@ namespace MA_TextureAtlasserPro
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(atlas.exportSettings == null)
|
||||||
|
{
|
||||||
|
atlas.exportSettings = LoadExportSettings();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static MA_TextureAtlasserProQuad CreateTextureQuad(MA_TextureAtlasserProAtlas atlas, string name, Rect rect, bool focus = true)
|
public static MA_TextureAtlasserProQuad CreateTextureQuad(MA_TextureAtlasserProAtlas atlas, string name, Rect rect, bool focus = true)
|
||||||
@ -248,7 +262,11 @@ namespace MA_TextureAtlasserPro
|
|||||||
|
|
||||||
if (copyData)
|
if (copyData)
|
||||||
{
|
{
|
||||||
q.meshes = atlas.selectedTextureQuad.meshes;
|
q.meshes = new List<Mesh>();
|
||||||
|
for (int i = 0; i < atlas.selectedTextureQuad.meshes.Count; i++)
|
||||||
|
{
|
||||||
|
q.meshes.Add(atlas.selectedTextureQuad.meshes[i]);
|
||||||
|
}
|
||||||
|
|
||||||
for (int i = 0; i < atlas.selectedTextureQuad.textureGroups.Count; i++)
|
for (int i = 0; i < atlas.selectedTextureQuad.textureGroups.Count; i++)
|
||||||
{
|
{
|
||||||
@ -276,22 +294,28 @@ namespace MA_TextureAtlasserPro
|
|||||||
//Add texture groups
|
//Add texture groups
|
||||||
foreach (MA_TextureGroupRegistration tgr in atlas.textureGroupRegistration)
|
foreach (MA_TextureGroupRegistration tgr in atlas.textureGroupRegistration)
|
||||||
{
|
{
|
||||||
MA_TextureGroup textureGroup = new MA_TextureGroup();
|
MA_TextureGroup textureGroup = new MA_TextureGroup
|
||||||
textureGroup.name = tgr.name;
|
{
|
||||||
|
name = tgr.name
|
||||||
|
};
|
||||||
quad.textureGroups.Add(textureGroup);
|
quad.textureGroups.Add(textureGroup);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void CreateTextureGroup(MA_TextureAtlasserProAtlas atlas, string name)
|
public static void CreateTextureGroup(MA_TextureAtlasserProAtlas atlas, string name)
|
||||||
{
|
{
|
||||||
MA_TextureGroupRegistration _textureGroupRegistration = new MA_TextureGroupRegistration();
|
MA_TextureGroupRegistration _textureGroupRegistration = new MA_TextureGroupRegistration
|
||||||
_textureGroupRegistration.name = name;
|
{
|
||||||
|
name = name
|
||||||
|
};
|
||||||
atlas.textureGroupRegistration.Add(_textureGroupRegistration);
|
atlas.textureGroupRegistration.Add(_textureGroupRegistration);
|
||||||
|
|
||||||
foreach (MA_TextureAtlasserProQuad q in atlas.textureQuads)
|
foreach (MA_TextureAtlasserProQuad q in atlas.textureQuads)
|
||||||
{
|
{
|
||||||
MA_TextureGroup _textureGroup = new MA_TextureGroup();
|
MA_TextureGroup _textureGroup = new MA_TextureGroup
|
||||||
_textureGroup.name = name;
|
{
|
||||||
|
name = name
|
||||||
|
};
|
||||||
q.textureGroups.Add(_textureGroup);
|
q.textureGroups.Add(_textureGroup);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -327,61 +351,27 @@ namespace MA_TextureAtlasserPro
|
|||||||
}
|
}
|
||||||
|
|
||||||
#region Export
|
#region Export
|
||||||
public static void ExportAtlasModels(MA_TextureAtlasserProAtlas atlas, ModelFormat modelFormat, string savePath = EXPORTASSETPATH)
|
public static void ExportAtlasModels(MA_TextureAtlasserProAtlas atlas, ModelExportSettings modelExportSettings, string savePath = EXPORTASSETPATH)
|
||||||
{
|
{
|
||||||
switch (modelFormat)
|
switch(modelExportSettings.modelFormat)
|
||||||
{
|
{
|
||||||
case ModelFormat.None:
|
case ModelFormat.None:
|
||||||
break;
|
break;
|
||||||
case ModelFormat.Obj:
|
case ModelFormat.Obj:
|
||||||
ExportAtlasObj(atlas, savePath);
|
ExportAtlasObj(atlas, modelExportSettings, savePath);
|
||||||
break;
|
|
||||||
case ModelFormat.ReplaceObj:
|
|
||||||
ModifyAtlasObj(atlas);
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void ExportAtlasObj(MA_TextureAtlasserProAtlas atlas, string savePath = EXPORTASSETPATH)
|
private static void ExportAtlasObj(MA_TextureAtlasserProAtlas atlas, ModelExportSettings modelExportSettings, string savePath = EXPORTASSETPATH)
|
||||||
{
|
{
|
||||||
if (atlas == null || atlas.textureQuads == null)
|
if (atlas == null || atlas.textureQuads == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
foreach (MA_TextureAtlasserProQuad ta in atlas.textureQuads)
|
if(modelExportSettings.replaceModel)
|
||||||
{
|
{
|
||||||
//Export Mesh
|
|
||||||
if(ta.meshes != null)
|
|
||||||
{
|
|
||||||
for (int m = 0; m < ta.meshes.Count; m++)
|
|
||||||
{
|
|
||||||
if(ta.meshes[m] != null)
|
|
||||||
{
|
|
||||||
//Create new mesh
|
|
||||||
Mesh newMesh = new Mesh();
|
|
||||||
//Duplicate it from the current one
|
|
||||||
newMesh = MA_MeshUtils.MA_DuplicateMesh(ta.meshes[m]);
|
|
||||||
//Remap UV's
|
|
||||||
newMesh = MA_MeshUtils.MA_UVReMap(newMesh, atlas.textureAtlasSize, ta.guiRect);
|
|
||||||
//Save it
|
|
||||||
string modelName = string.IsNullOrEmpty(ta.name) ? "": ta.name + "-";
|
|
||||||
modelName += ta.meshes[m].name;
|
|
||||||
int n = m + 1;
|
|
||||||
modelName += "_" + n.ToString("#000");
|
|
||||||
|
|
||||||
MA_MeshUtils.MeshToFile(newMesh, modelName, savePath);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void ModifyAtlasObj(MA_TextureAtlasserProAtlas atlas)
|
|
||||||
{
|
|
||||||
if (atlas == null || atlas.textureQuads == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
var quads = atlas.textureQuads;
|
var quads = atlas.textureQuads;
|
||||||
|
|
||||||
for (var index = 0; index < quads.Count; index++)
|
for (var index = 0; index < quads.Count; index++)
|
||||||
@ -396,29 +386,59 @@ namespace MA_TextureAtlasserPro
|
|||||||
if (meshes[meshIndex] == null)
|
if (meshes[meshIndex] == null)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
MA_MeshUtils.MA_UVReMap(meshes[meshIndex], atlas.textureAtlasSize, quad.guiRect);
|
MA_MeshUtils.MA_UVReMap(meshes[meshIndex], atlas.textureAtlasSize, quad.guiRect, modelExportSettings.uvChannel, modelExportSettings.uvFlipY, modelExportSettings.uvWrap);
|
||||||
EditorUtility.SetDirty(meshes[meshIndex]);
|
EditorUtility.SetDirty(meshes[meshIndex]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
AssetDatabase.SaveAssets();
|
AssetDatabase.SaveAssets();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
public static void ExportAtlasTextures(MA_TextureAtlasserProAtlas atlas, TextureFormat textureFormat, TextureType textureType, MA_TextureUtils.TextureScaleMode scaleMode, string savePath = EXPORTASSETPATH)
|
|
||||||
{
|
{
|
||||||
switch (textureFormat)
|
foreach (MA_TextureAtlasserProQuad quad in atlas.textureQuads)
|
||||||
|
{
|
||||||
|
//Export Mesh
|
||||||
|
if (quad.meshes != null)
|
||||||
|
{
|
||||||
|
for (int m = 0; m < quad.meshes.Count; m++)
|
||||||
|
{
|
||||||
|
if (quad.meshes[m] != null)
|
||||||
|
{
|
||||||
|
//Create new mesh
|
||||||
|
Mesh newMesh = new Mesh();
|
||||||
|
//Duplicate it from the current one
|
||||||
|
newMesh = MA_MeshUtils.MA_DuplicateMesh(quad.meshes[m]);
|
||||||
|
//Remap UV's
|
||||||
|
newMesh = MA_MeshUtils.MA_UVReMap(newMesh, atlas.textureAtlasSize, quad.guiRect, modelExportSettings.uvChannel, modelExportSettings.uvFlipY, modelExportSettings.uvWrap);
|
||||||
|
//Save it
|
||||||
|
string modelName = string.IsNullOrEmpty(quad.name) ? "" : quad.name + "-";
|
||||||
|
modelName += quad.meshes[m].name;
|
||||||
|
int n = m + 1;
|
||||||
|
modelName += "_" + n.ToString("#000");
|
||||||
|
|
||||||
|
MA_MeshUtils.MeshToFile(newMesh, modelName, savePath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void ExportAtlasTextures(MA_TextureAtlasserProAtlas atlas, TextureExportSettings textureExportSettings, string savePath = EXPORTASSETPATH)
|
||||||
|
{
|
||||||
|
switch (textureExportSettings.textureFormat)
|
||||||
{
|
{
|
||||||
case TextureFormat.None:
|
case TextureFormat.None:
|
||||||
break;
|
break;
|
||||||
case TextureFormat.Png:
|
case TextureFormat.Png:
|
||||||
ExportAtlasPNG(atlas, textureType, scaleMode, savePath);
|
ExportAtlasPNG(atlas, textureExportSettings, savePath);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void ExportAtlasPNG(MA_TextureAtlasserProAtlas atlas, TextureType textureType, MA_TextureUtils.TextureScaleMode scaleMode, string savePath = EXPORTASSETPATH)
|
private static void ExportAtlasPNG(MA_TextureAtlasserProAtlas atlas, TextureExportSettings textureExportSettings, string savePath = EXPORTASSETPATH)
|
||||||
{
|
{
|
||||||
if (atlas == null || atlas.textureQuads == null || atlas.textureGroupRegistration == null)
|
if (atlas == null || atlas.textureQuads == null || atlas.textureGroupRegistration == null)
|
||||||
return;
|
return;
|
||||||
@ -427,17 +447,19 @@ namespace MA_TextureAtlasserPro
|
|||||||
for (int i = 0; i < atlas.textureGroupRegistration.Count; i++)
|
for (int i = 0; i < atlas.textureGroupRegistration.Count; i++)
|
||||||
{
|
{
|
||||||
//Create new Texture Atlas
|
//Create new Texture Atlas
|
||||||
Texture2D newTexture = new Texture2D((int)atlas.textureAtlasSize.x, (int)atlas.textureAtlasSize.y);
|
Texture2D newTexture = new Texture2D((int)atlas.textureAtlasSize.x, (int)atlas.textureAtlasSize.y)
|
||||||
newTexture.name = atlas.name + "_" + atlas.textureGroupRegistration[i].name;
|
{
|
||||||
|
name = atlas.name + "_" + atlas.textureGroupRegistration[i].name
|
||||||
|
};
|
||||||
|
|
||||||
foreach (MA_TextureAtlasserProQuad q in atlas.textureQuads)
|
foreach (MA_TextureAtlasserProQuad q in atlas.textureQuads)
|
||||||
{
|
{
|
||||||
if (q.textureGroups != null && q.textureGroups[i].texture != null)
|
if (q.textureGroups != null && q.textureGroups[i].texture != null)
|
||||||
{
|
{
|
||||||
//Create new texture part
|
//Create new texture part
|
||||||
Texture2D newTexturePart = (Texture2D)MA_Texture.MA_TextureUtils.ConvertToReadableTexture(q.textureGroups[i].texture);
|
Texture2D newTexturePart = (Texture2D)MA_TextureUtils.ConvertToReadableTexture(q.textureGroups[i].texture);
|
||||||
//Scale it
|
//Scale it
|
||||||
newTexturePart = newTexturePart.MA_Scale2D((int)q.guiRect.width, (int)q.guiRect.height, scaleMode);
|
newTexturePart = newTexturePart.MA_Scale2D((int)q.guiRect.width, (int)q.guiRect.height, textureExportSettings.textureScaleMode);
|
||||||
//Add it
|
//Add it
|
||||||
newTexture = newTexture.MA_Combine2D(newTexturePart, (int)q.guiRect.x, (int)q.guiRect.y);
|
newTexture = newTexture.MA_Combine2D(newTexturePart, (int)q.guiRect.x, (int)q.guiRect.y);
|
||||||
}
|
}
|
||||||
@ -451,25 +473,13 @@ namespace MA_TextureAtlasserPro
|
|||||||
textureImporter.SaveAndReimport();
|
textureImporter.SaveAndReimport();
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (textureType)
|
SetAtlasPNGSpriteSettings(atlas, textureExportSettings, savePath);
|
||||||
{
|
|
||||||
case TextureType.Default:
|
|
||||||
break;
|
|
||||||
case TextureType.Sprite:
|
|
||||||
SetAtlasPNGSpriteSettings(atlas, textureType, savePath);
|
|
||||||
break;
|
|
||||||
case TextureType.SpriteSliced:
|
|
||||||
SetAtlasPNGSpriteSettings(atlas, textureType, savePath);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Refresh
|
//Refresh
|
||||||
AssetDatabase.Refresh();
|
AssetDatabase.Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void SetAtlasPNGSpriteSettings(MA_TextureAtlasserProAtlas atlas, TextureType textureType, string savePath = EXPORTASSETPATH)
|
private static void SetAtlasPNGSpriteSettings(MA_TextureAtlasserProAtlas atlas, TextureExportSettings textureExportSettings, string savePath = EXPORTASSETPATH)
|
||||||
{
|
{
|
||||||
//Foreach texture group
|
//Foreach texture group
|
||||||
for (int i = 0; i < atlas.textureGroupRegistration.Count; i++)
|
for (int i = 0; i < atlas.textureGroupRegistration.Count; i++)
|
||||||
@ -481,7 +491,7 @@ namespace MA_TextureAtlasserPro
|
|||||||
textureImporter.alphaIsTransparency = true;
|
textureImporter.alphaIsTransparency = true;
|
||||||
|
|
||||||
//Slice sprites.
|
//Slice sprites.
|
||||||
if (textureType == TextureType.SpriteSliced)
|
if (textureExportSettings.textureType == TextureType.SpriteSliced)
|
||||||
{
|
{
|
||||||
textureImporter.spriteImportMode = SpriteImportMode.None; //Reset it to update?
|
textureImporter.spriteImportMode = SpriteImportMode.None; //Reset it to update?
|
||||||
textureImporter.spriteImportMode = SpriteImportMode.Multiple;
|
textureImporter.spriteImportMode = SpriteImportMode.Multiple;
|
||||||
@ -492,10 +502,11 @@ namespace MA_TextureAtlasserPro
|
|||||||
if (q.textureGroups != null && q.textureGroups[i].texture != null)
|
if (q.textureGroups != null && q.textureGroups[i].texture != null)
|
||||||
{
|
{
|
||||||
//Create new SpriteMetaData.
|
//Create new SpriteMetaData.
|
||||||
SpriteMetaData smd = new SpriteMetaData();
|
SpriteMetaData smd = new SpriteMetaData
|
||||||
|
{
|
||||||
smd.name = q.name;
|
name = q.name,
|
||||||
smd.rect = new Rect(q.guiRect.x, atlas.textureAtlasSize.y - q.guiRect.y - q.guiRect.height, q.guiRect.width, q.guiRect.height);
|
rect = new Rect(q.guiRect.x, atlas.textureAtlasSize.y - q.guiRect.y - q.guiRect.height, q.guiRect.width, q.guiRect.height)
|
||||||
|
};
|
||||||
|
|
||||||
spriteMetaData.Add(smd);
|
spriteMetaData.Add(smd);
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,88 @@
|
|||||||
|
#if UNITY_EDITOR
|
||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
using UnityEditor;
|
||||||
|
using MA_Editor;
|
||||||
|
using MA_Texture;
|
||||||
|
|
||||||
|
namespace MA_TextureAtlasserPro
|
||||||
|
{
|
||||||
|
public class MA_TextureAtlasserProCreateExportWindow : EditorWindow
|
||||||
|
{
|
||||||
|
private const int windowHeight = 97;
|
||||||
|
private const int windowWidth = 320;
|
||||||
|
|
||||||
|
//Editor
|
||||||
|
private static MA_TextureAtlasserProCreateExportWindow thisWindow;
|
||||||
|
public static MA_TextureAtlasserProWindow curWindow;
|
||||||
|
|
||||||
|
//Data
|
||||||
|
string settingsName = "Settings name";
|
||||||
|
bool nameError = true;
|
||||||
|
|
||||||
|
[MenuItem("MA_ToolKit/MA_TextureAtlasserPro/New Export Settings")]
|
||||||
|
public static void Init()
|
||||||
|
{
|
||||||
|
InitWindow(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void InitWindow(MA_TextureAtlasserProWindow currentEditorWindow)
|
||||||
|
{
|
||||||
|
curWindow = currentEditorWindow;
|
||||||
|
|
||||||
|
GetCurrentWindow();
|
||||||
|
|
||||||
|
thisWindow.minSize = new Vector2(windowWidth, windowHeight);
|
||||||
|
thisWindow.maxSize = new Vector2(windowWidth, windowHeight);
|
||||||
|
thisWindow.titleContent.text = "MA_CreateExportSettings";
|
||||||
|
|
||||||
|
thisWindow.Show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void GetCurrentWindow()
|
||||||
|
{
|
||||||
|
thisWindow = (MA_TextureAtlasserProCreateExportWindow)EditorWindow.GetWindow<MA_TextureAtlasserProCreateExportWindow>();
|
||||||
|
}
|
||||||
|
|
||||||
|
void OnGUI()
|
||||||
|
{
|
||||||
|
GUILayout.BeginArea(new Rect(MA_TextureAtlasserProUtils.VIEWOFFSET, MA_TextureAtlasserProUtils.VIEWOFFSET, position.width - (MA_TextureAtlasserProUtils.VIEWOFFSET * 2), position.height - (MA_TextureAtlasserProUtils.VIEWOFFSET * 2)));
|
||||||
|
GUILayout.BeginVertical();
|
||||||
|
|
||||||
|
//Input options
|
||||||
|
settingsName = EditorGUILayout.TextField("Settings name", settingsName, GUILayout.ExpandWidth(true));
|
||||||
|
if (settingsName == "Settings name" || string.IsNullOrEmpty(settingsName))
|
||||||
|
{
|
||||||
|
nameError = true;
|
||||||
|
GUI.backgroundColor = Color.red;
|
||||||
|
GUILayout.Box("Error: Enter a valid settings name!", EditorStyles.helpBox);
|
||||||
|
GUI.backgroundColor = Color.white;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
nameError = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Create
|
||||||
|
if (!nameError)
|
||||||
|
{
|
||||||
|
if (GUILayout.Button("Create!", GUILayout.ExpandWidth(true), GUILayout.Height(37)))
|
||||||
|
{
|
||||||
|
MA_TextureAtlasserProExportSettings exportSettings = MA_TextureAtlasserProUtils.CreateExportSettings(settingsName, true);
|
||||||
|
|
||||||
|
if (curWindow != null && curWindow.textureAtlas != null)
|
||||||
|
{
|
||||||
|
curWindow.textureAtlas.exportSettings = exportSettings;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.Close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GUILayout.EndVertical();
|
||||||
|
GUILayout.EndArea();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
@ -10,7 +10,8 @@ namespace MA_TextureAtlasserPro
|
|||||||
{
|
{
|
||||||
public class MA_TextureAtlasserProExportWindow : EditorWindow
|
public class MA_TextureAtlasserProExportWindow : EditorWindow
|
||||||
{
|
{
|
||||||
private const int WindowHeight = 235;
|
private const int windowHeight = 300;
|
||||||
|
private const int windowWidth = 320;
|
||||||
|
|
||||||
//Editor
|
//Editor
|
||||||
private static MA_TextureAtlasserProExportWindow thisWindow;
|
private static MA_TextureAtlasserProExportWindow thisWindow;
|
||||||
@ -19,21 +20,12 @@ namespace MA_TextureAtlasserPro
|
|||||||
//Data
|
//Data
|
||||||
private static bool isLoaded = false; //Make sure we wait a frame at the start to setup and don't draw.
|
private static bool isLoaded = false; //Make sure we wait a frame at the start to setup and don't draw.
|
||||||
|
|
||||||
//Export settings.
|
|
||||||
private ExportPreset exportPreset = ExportPreset.Default;
|
|
||||||
private ModelFormat modelFormat = ModelFormat.Obj;
|
|
||||||
private TextureFormat textureFormat = TextureFormat.Png;
|
|
||||||
private TextureType textureType = TextureType.Default;
|
|
||||||
private MA_TextureUtils.TextureScaleMode textureScaleMode = MA_TextureUtils.TextureScaleMode.Bilinear;
|
|
||||||
|
|
||||||
[MenuItem("MA_ToolKit/MA_TextureAtlasserPro/Export Atlas")]
|
[MenuItem("MA_ToolKit/MA_TextureAtlasserPro/Export Atlas")]
|
||||||
private static void Init()
|
private static void Init()
|
||||||
{
|
{
|
||||||
GetCurrentWindow();
|
GetCurrentWindow();
|
||||||
|
|
||||||
thisWindow.minSize = new Vector2(420, WindowHeight);
|
thisWindow.minSize = new Vector2(windowWidth, windowHeight);
|
||||||
thisWindow.maxSize = new Vector2(420, WindowHeight);
|
|
||||||
|
|
||||||
thisWindow.titleContent.text = "MA_ExportTextureAtlas";
|
thisWindow.titleContent.text = "MA_ExportTextureAtlas";
|
||||||
|
|
||||||
thisWindow.Show();
|
thisWindow.Show();
|
||||||
@ -45,9 +37,7 @@ namespace MA_TextureAtlasserPro
|
|||||||
|
|
||||||
GetCurrentWindow();
|
GetCurrentWindow();
|
||||||
|
|
||||||
thisWindow.minSize = new Vector2(420, WindowHeight);
|
thisWindow.minSize = new Vector2(windowWidth, windowHeight);
|
||||||
thisWindow.maxSize = new Vector2(420, WindowHeight);
|
|
||||||
|
|
||||||
thisWindow.titleContent.text = "MA_ExportTextureAtlas";
|
thisWindow.titleContent.text = "MA_ExportTextureAtlas";
|
||||||
|
|
||||||
thisWindow.Show();
|
thisWindow.Show();
|
||||||
@ -106,45 +96,15 @@ namespace MA_TextureAtlasserPro
|
|||||||
{
|
{
|
||||||
//Export
|
//Export
|
||||||
GUILayout.BeginVertical();
|
GUILayout.BeginVertical();
|
||||||
|
DrawExportMenu();
|
||||||
|
|
||||||
DrawExportPresetMenu();
|
curWindow.textureAtlas.exportSettings = (MA_TextureAtlasserProExportSettings)EditorGUILayout.ObjectField(curWindow.textureAtlas.exportSettings, typeof(MA_TextureAtlasserProExportSettings), false);
|
||||||
|
|
||||||
|
if(curWindow.textureAtlas.exportSettings != null)
|
||||||
|
{
|
||||||
DrawExportAdvancedOptions();
|
DrawExportAdvancedOptions();
|
||||||
|
|
||||||
GUILayout.BeginHorizontal(EditorStyles.helpBox);
|
|
||||||
|
|
||||||
switch (exportPreset)
|
|
||||||
{
|
|
||||||
case ExportPreset.Custom:
|
|
||||||
break;
|
|
||||||
case ExportPreset.Default:
|
|
||||||
modelFormat = ModelFormat.Obj;
|
|
||||||
textureFormat = TextureFormat.Png;
|
|
||||||
textureType = TextureType.Default;
|
|
||||||
textureScaleMode = MA_TextureUtils.TextureScaleMode.Bilinear;
|
|
||||||
break;
|
|
||||||
case ExportPreset.Sprites:
|
|
||||||
modelFormat = ModelFormat.None;
|
|
||||||
textureFormat = TextureFormat.Png;
|
|
||||||
textureType = TextureType.SpriteSliced;
|
|
||||||
textureScaleMode = MA_TextureUtils.TextureScaleMode.Bilinear;
|
|
||||||
break;
|
|
||||||
case ExportPreset.ReplaceObjMeshes:
|
|
||||||
modelFormat = ModelFormat.ReplaceObj;
|
|
||||||
textureFormat = TextureFormat.Png;
|
|
||||||
textureType = TextureType.Default;
|
|
||||||
textureScaleMode = MA_TextureUtils.TextureScaleMode.Bilinear;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (GUILayout.Button("Export", GUILayout.ExpandWidth(true), GUILayout.Height(37)))
|
|
||||||
{
|
|
||||||
MA_TextureAtlasserProUtils.ExportAtlasModels(curWindow.textureAtlas, modelFormat);
|
|
||||||
MA_TextureAtlasserProUtils.ExportAtlasTextures(curWindow.textureAtlas, textureFormat, textureType, textureScaleMode);
|
|
||||||
}
|
|
||||||
|
|
||||||
GUILayout.EndHorizontal();
|
|
||||||
GUILayout.EndVertical();
|
GUILayout.EndVertical();
|
||||||
}
|
}
|
||||||
else if(curWindow == null)
|
else if(curWindow == null)
|
||||||
@ -172,11 +132,33 @@ namespace MA_TextureAtlasserPro
|
|||||||
isLoaded = true;
|
isLoaded = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DrawExportPresetMenu()
|
private void DrawExportMenu()
|
||||||
{
|
{
|
||||||
GUILayout.BeginHorizontal(EditorStyles.helpBox);
|
GUILayout.BeginHorizontal(EditorStyles.helpBox, GUILayout.Height(44));
|
||||||
|
|
||||||
exportPreset = (ExportPreset)EditorGUILayout.EnumPopup("ExportPreset:", exportPreset, GUILayout.ExpandWidth(true));
|
if (GUILayout.Button(MA_TextureAtlasserProIcons.createAtlasIcon, GUILayout.ExpandWidth(false), GUILayout.ExpandHeight(true)))
|
||||||
|
{
|
||||||
|
MA_TextureAtlasserProCreateExportWindow.InitWindow(curWindow);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool wasEnabled = GUI.enabled;
|
||||||
|
|
||||||
|
if (curWindow.textureAtlas.exportSettings != null)
|
||||||
|
{
|
||||||
|
GUI.enabled = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
GUI.enabled = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (GUILayout.Button("Export", GUILayout.ExpandWidth(true), GUILayout.Height(37)))
|
||||||
|
{
|
||||||
|
MA_TextureAtlasserProUtils.ExportAtlasModels(curWindow.textureAtlas, curWindow.textureAtlas.exportSettings.modelExportSettings);
|
||||||
|
MA_TextureAtlasserProUtils.ExportAtlasTextures(curWindow.textureAtlas, curWindow.textureAtlas.exportSettings.textureExportSettings);
|
||||||
|
}
|
||||||
|
|
||||||
|
GUI.enabled = wasEnabled;
|
||||||
|
|
||||||
GUILayout.EndHorizontal();
|
GUILayout.EndHorizontal();
|
||||||
}
|
}
|
||||||
@ -185,7 +167,7 @@ namespace MA_TextureAtlasserPro
|
|||||||
{
|
{
|
||||||
bool wasEnabled = GUI.enabled;
|
bool wasEnabled = GUI.enabled;
|
||||||
|
|
||||||
if(exportPreset == ExportPreset.Custom)
|
if (curWindow.textureAtlas.exportSettings.canModify)
|
||||||
{
|
{
|
||||||
GUI.enabled = true;
|
GUI.enabled = true;
|
||||||
}
|
}
|
||||||
@ -197,12 +179,16 @@ namespace MA_TextureAtlasserPro
|
|||||||
EditorGUILayout.BeginVertical(EditorStyles.helpBox);
|
EditorGUILayout.BeginVertical(EditorStyles.helpBox);
|
||||||
|
|
||||||
GUILayout.Label("Models:", EditorStyles.miniBoldLabel);
|
GUILayout.Label("Models:", EditorStyles.miniBoldLabel);
|
||||||
modelFormat = (ModelFormat)EditorGUILayout.EnumPopup("ModelFormat:", modelFormat);
|
curWindow.textureAtlas.exportSettings.modelExportSettings.modelFormat = (ModelFormat)EditorGUILayout.EnumPopup("ModelFormat:", curWindow.textureAtlas.exportSettings.modelExportSettings.modelFormat);
|
||||||
|
curWindow.textureAtlas.exportSettings.modelExportSettings.replaceModel = EditorGUILayout.Toggle("ReplaceModels:", curWindow.textureAtlas.exportSettings.modelExportSettings.replaceModel);
|
||||||
|
curWindow.textureAtlas.exportSettings.modelExportSettings.uvFlipY = EditorGUILayout.Toggle("UV FlipY:", curWindow.textureAtlas.exportSettings.modelExportSettings.uvFlipY);
|
||||||
|
curWindow.textureAtlas.exportSettings.modelExportSettings.uvChannel = EditorGUILayout.IntField("UV Channel:", curWindow.textureAtlas.exportSettings.modelExportSettings.uvChannel);
|
||||||
|
curWindow.textureAtlas.exportSettings.modelExportSettings.uvWrap = EditorGUILayout.Toggle("UV Wrap:", curWindow.textureAtlas.exportSettings.modelExportSettings.uvWrap);
|
||||||
|
|
||||||
GUILayout.Label("Textures:", EditorStyles.miniBoldLabel);
|
GUILayout.Label("Textures:", EditorStyles.miniBoldLabel);
|
||||||
textureFormat = (TextureFormat)EditorGUILayout.EnumPopup("TextureFormat:", textureFormat);
|
curWindow.textureAtlas.exportSettings.textureExportSettings.textureFormat = (TextureFormat)EditorGUILayout.EnumPopup("TextureFormat:", curWindow.textureAtlas.exportSettings.textureExportSettings.textureFormat);
|
||||||
textureType = (TextureType)EditorGUILayout.EnumPopup("TextureType:", textureType);
|
curWindow.textureAtlas.exportSettings.textureExportSettings.textureType = (TextureType)EditorGUILayout.EnumPopup("TextureType:", curWindow.textureAtlas.exportSettings.textureExportSettings.textureType);
|
||||||
textureScaleMode = (MA_TextureUtils.TextureScaleMode)EditorGUILayout.EnumPopup("TextureScaleMode:", textureScaleMode);
|
curWindow.textureAtlas.exportSettings.textureExportSettings.textureScaleMode = (MA_TextureUtils.TextureScaleMode)EditorGUILayout.EnumPopup("TextureScaleMode:", curWindow.textureAtlas.exportSettings.textureExportSettings.textureScaleMode);
|
||||||
|
|
||||||
EditorGUILayout.EndVertical();
|
EditorGUILayout.EndVertical();
|
||||||
|
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
Export settigns are supposed to be here.
|
@ -0,0 +1,25 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 81466035f9fafc64db33b9e6114d774b, type: 3}
|
||||||
|
m_Name: MA_DefaultExportSettings
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
canModify: 0
|
||||||
|
modelExportSettings:
|
||||||
|
modelFormat: 1
|
||||||
|
replaceModel: 0
|
||||||
|
uvFlipY: 1
|
||||||
|
uvChannel: 0
|
||||||
|
uvWrap: 1
|
||||||
|
textureExportSettings:
|
||||||
|
textureFormat: 1
|
||||||
|
textureType: 0
|
||||||
|
textureScaleMode: 0
|
@ -0,0 +1,25 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 81466035f9fafc64db33b9e6114d774b, type: 3}
|
||||||
|
m_Name: MA_DefaultSpriteExportSettings
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
canModify: 0
|
||||||
|
modelExportSettings:
|
||||||
|
modelFormat: 1
|
||||||
|
replaceModel: 0
|
||||||
|
uvFlipY: 1
|
||||||
|
uvChannel: 0
|
||||||
|
uvWrap: 1
|
||||||
|
textureExportSettings:
|
||||||
|
textureFormat: 1
|
||||||
|
textureType: 0
|
||||||
|
textureScaleMode: 0
|
@ -0,0 +1,24 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 73f5e66553c13034e9b894ef2cc31b66, type: 3}
|
||||||
|
m_Name: MA_TextureAtlasserProSettings
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
useHotkeys: 1
|
||||||
|
modifierKey: 1
|
||||||
|
addQuadHotKey: 113
|
||||||
|
removeQuadHotKey: 114
|
||||||
|
duplicateHotKey: 100
|
||||||
|
zoomInHotKey: 61
|
||||||
|
zoomOutHotKey: 45
|
||||||
|
copySelectedQuadData: 1
|
||||||
|
duplicatedQuadNamePrefix: 'new '
|
||||||
|
autoFocus: 1
|
@ -39,17 +39,19 @@ namespace MA_Mesh
|
|||||||
|
|
||||||
public static Mesh MA_DuplicateMesh(Mesh mesh)
|
public static Mesh MA_DuplicateMesh(Mesh mesh)
|
||||||
{
|
{
|
||||||
Mesh newMesh = new Mesh();
|
Mesh newMesh = new Mesh
|
||||||
newMesh.name = mesh.name;
|
{
|
||||||
|
name = mesh.name,
|
||||||
|
bounds = mesh.bounds,
|
||||||
|
colors = mesh.colors,
|
||||||
|
subMeshCount = mesh.subMeshCount
|
||||||
|
};
|
||||||
|
|
||||||
newMesh.SetVertices(new List<Vector3>(mesh.vertices));
|
newMesh.SetVertices(new List<Vector3>(mesh.vertices));
|
||||||
newMesh.bounds = mesh.bounds;
|
|
||||||
newMesh.colors = mesh.colors.ToArray();
|
|
||||||
newMesh.subMeshCount = mesh.subMeshCount;
|
|
||||||
for (int i = 0; i < mesh.subMeshCount; i++)
|
for (int i = 0; i < mesh.subMeshCount; i++)
|
||||||
{
|
{
|
||||||
newMesh.SetTriangles(mesh.GetTriangles(i), i);
|
newMesh.SetTriangles(mesh.GetTriangles(i), i);
|
||||||
}
|
}
|
||||||
newMesh.subMeshCount = mesh.subMeshCount;
|
|
||||||
newMesh.SetNormals(new List<Vector3>(mesh.normals));
|
newMesh.SetNormals(new List<Vector3>(mesh.normals));
|
||||||
newMesh.SetUVs(0, new List<Vector2>(mesh.uv));
|
newMesh.SetUVs(0, new List<Vector2>(mesh.uv));
|
||||||
newMesh.SetTangents(new List<Vector4>(mesh.tangents));
|
newMesh.SetTangents(new List<Vector4>(mesh.tangents));
|
||||||
@ -86,27 +88,41 @@ namespace MA_Mesh
|
|||||||
return mesh;
|
return mesh;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Mesh MA_UVReMap(this Mesh mesh, Vector2 atlasSize, Rect textureRect, int uvChannel = 0, bool flipY = true)
|
public static Mesh MA_UVReMap(this Mesh mesh, Vector2 atlasSize, Rect textureRect, int uvChannel = 0, bool flipY = true, bool wrap = true)
|
||||||
{
|
{
|
||||||
List<Vector2> uvs = new List<Vector2>();
|
|
||||||
|
|
||||||
//Get UV's
|
//Get UV's
|
||||||
|
List<Vector2> uvs = new List<Vector2>();
|
||||||
mesh.GetUVs(uvChannel, uvs);
|
mesh.GetUVs(uvChannel, uvs);
|
||||||
|
|
||||||
for (int i = 0; i < uvs.Count; i++)
|
//Min and max bounds in 0-1 space.
|
||||||
|
float xMin, xMax, yMin, yMax;
|
||||||
|
xMin = (1f / atlasSize.x * textureRect.width);
|
||||||
|
xMax = (1f / atlasSize.x * textureRect.x);
|
||||||
|
yMin = (1f / atlasSize.y * textureRect.height);
|
||||||
|
|
||||||
|
//Flip uv's if needed.
|
||||||
|
if (flipY)
|
||||||
{
|
{
|
||||||
if(flipY)
|
yMax = (1f / atlasSize.y * (atlasSize.y - textureRect.height - textureRect.y));
|
||||||
{
|
|
||||||
uvs[i] = new Vector2((uvs[i].x / atlasSize.x * textureRect.width) + (1 / atlasSize.x * textureRect.x),
|
|
||||||
(uvs[i].y / atlasSize.y * textureRect.height) + (1 / atlasSize.y * (atlasSize.y - textureRect.height - textureRect.y)));
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
//Debug.Log("01" + uvs[i].x);
|
yMax = (1f / atlasSize.y * textureRect.y);
|
||||||
uvs[i] = new Vector2((uvs[i].x / atlasSize.x * textureRect.width) + (1 / atlasSize.x * textureRect.x),
|
|
||||||
(uvs[i].y / atlasSize.y * textureRect.height) + (1 / atlasSize.y * textureRect.y));
|
|
||||||
//Debug.Log("02" + uvs[i].x);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < uvs.Count; i++)
|
||||||
|
{
|
||||||
|
float newX = uvs[i].x * xMin + xMax;
|
||||||
|
float newY = uvs[i].y * yMin + yMax;
|
||||||
|
|
||||||
|
//Wrap the verts outside of the uv space around back into the uv space.
|
||||||
|
if (wrap)
|
||||||
|
{
|
||||||
|
newX = Wrap(newX, xMax, xMin + xMax);
|
||||||
|
newY = Wrap(newY, yMax, yMin + yMax);
|
||||||
|
}
|
||||||
|
|
||||||
|
uvs[i] = new Vector2(newX, newY);
|
||||||
}
|
}
|
||||||
|
|
||||||
mesh.SetUVs(uvChannel, uvs);
|
mesh.SetUVs(uvChannel, uvs);
|
||||||
@ -114,6 +130,14 @@ namespace MA_Mesh
|
|||||||
return mesh;
|
return mesh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static float Wrap(float val, float min, float max)
|
||||||
|
{
|
||||||
|
val -= (float)Math.Round((val - min) / (max - min)) * (max - min);
|
||||||
|
if (val < min)
|
||||||
|
val = val + max - min;
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
//Start http://wiki.unity3d.com/index.php?title=ObjExporter
|
//Start http://wiki.unity3d.com/index.php?title=ObjExporter
|
||||||
public static string MeshToString(Mesh mesh)
|
public static string MeshToString(Mesh mesh)
|
||||||
{
|
{
|
||||||
@ -121,7 +145,6 @@ namespace MA_Mesh
|
|||||||
int normalOffset = 0;
|
int normalOffset = 0;
|
||||||
int uvOffset = 0;
|
int uvOffset = 0;
|
||||||
|
|
||||||
|
|
||||||
Material material = new Material(Shader.Find("Standard"));
|
Material material = new Material(Shader.Find("Standard"));
|
||||||
|
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
@ -169,9 +192,9 @@ namespace MA_Mesh
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vertexOffset += mesh.vertices.Length;
|
//vertexOffset += mesh.vertices.Length;
|
||||||
normalOffset += mesh.normals.Length;
|
//normalOffset += mesh.normals.Length;
|
||||||
uvOffset += mesh.uv.Length;
|
//uvOffset += mesh.uv.Length;
|
||||||
|
|
||||||
return sb.ToString();
|
return sb.ToString();
|
||||||
}
|
}
|
||||||
@ -186,10 +209,10 @@ namespace MA_Mesh
|
|||||||
//End
|
//End
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ObjMaterial
|
//struct ObjMaterial
|
||||||
{
|
//{
|
||||||
public string name;
|
// public string name;
|
||||||
public string textureName;
|
// public string textureName;
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
@ -218,7 +218,7 @@ namespace MA_Texture
|
|||||||
public static Texture MA_Combine(this Texture texture, Texture combineTexture, int offsetX, int offsetY)
|
public static Texture MA_Combine(this Texture texture, Texture combineTexture, int offsetX, int offsetY)
|
||||||
{
|
{
|
||||||
Texture2D texture2D = (Texture2D)MA_TextureUtils.ConvertToReadableTexture(texture);
|
Texture2D texture2D = (Texture2D)MA_TextureUtils.ConvertToReadableTexture(texture);
|
||||||
Texture2D combineTexture2D = (Texture2D)MA_TextureUtils.ConvertToReadableTexture(texture);
|
Texture2D combineTexture2D = (Texture2D)MA_TextureUtils.ConvertToReadableTexture(combineTexture);
|
||||||
|
|
||||||
texture = texture2D.MA_Combine2D(combineTexture2D, offsetX, offsetY);
|
texture = texture2D.MA_Combine2D(combineTexture2D, offsetX, offsetY);
|
||||||
|
|
||||||
|
@ -18,4 +18,4 @@ Download the UnityPackage here: https://github.com/maxartz15/MA_TextureAtlasser/
|
|||||||
|
|
||||||
[![Github All Releases](https://img.shields.io/github/downloads/maxartz15/MA_TextureAtlasser/total.svg)]()
|
[![Github All Releases](https://img.shields.io/github/downloads/maxartz15/MA_TextureAtlasser/total.svg)]()
|
||||||
|
|
||||||
For more information: https://maxartz15.com/ma_textureatlas/
|
For more information: https://maxartz15.com/ma-textureatlasser/
|
Loading…
Reference in New Issue
Block a user