//---------------------------------------------- // MeshBaker // Copyright © 2011-2012 Ian Deane //---------------------------------------------- using UnityEngine; using System.Collections; using System.Collections.Specialized; using System; using System.Collections.Generic; using System.Text; using DigitalOpus.MB.Core; /// /// Maps a list of source materials to a combined material. Included in MB2_TextureBakeResults /// /// /// Abstract root of the mesh combining classes /// public abstract class MB3_MeshBakerCommon : MB3_MeshBakerRoot { public static int VERSION { get { return 100; } } public int version; //todo should be list of #if UNITY_2020_2_OR_NEWER [NonReorderable] //see MB-136 for why this is here #endif public List objsToMesh; public abstract MB3_MeshCombiner meshCombiner { get; } public bool useObjsToMeshFromTexBaker = true; [UnityEngine.Serialization.FormerlySerializedAs("clearBuffersAfterBake")] [SerializeField] [HideInInspector] private bool _clearBuffersAfterBake; public bool clearBuffersAfterBake { // At version 100 we moved the MeshBakerCommon.clearBuffersAfterBake field into the meshCombiner.clearBuffersAfterBaker field. // This is complicated because the field is serialized in many scenes. We use the UpgradeToCurrentVersion system to do one time copy // This value. get { if (version < 100) { UpgradeToCurrentVersionIfNecessary(); return _clearBuffersAfterBake; } else { Debug.LogError("MeshBaker.clearBuffersAfterBake is deprecated, use the meshCombiner.clearBuffersAfterBake field"); return meshCombiner.clearBuffersAfterBake; } } set { if (version < 100) { UpgradeToCurrentVersionIfNecessary(); _clearBuffersAfterBake = value; } else { Debug.LogError("MeshBaker.clearBuffersAfterBake is deprecated, use the meshCombiner.clearBuffersAfterBake field"); meshCombiner.clearBuffersAfterBake = value; } } } //t0do put this in the batch baker public string bakeAssetsInPlaceFolderPath; [HideInInspector] public GameObject resultPrefab; /// /// If checked then an instance will be left in the scene after baking. Otherwise scene instance will be deleted after prefab is baked. /// [HideInInspector] public bool resultPrefabLeaveInstanceInSceneAfterBake; /// /// Optional, combined mesh renderers will be children of this object if it exists. /// [HideInInspector] public Transform parentSceneObject; /// /// Used to /// public void UpgradeToCurrentVersionIfNecessary() { if (version == VERSION) return; if (version < 100) { // At version == 100 we deprecated the MeshBaker.clearBuffersAfterBake field. // We use the field in the meshCombiner.clearBuffersAfterBake. meshCombiner.clearBuffersAfterBake = _clearBuffersAfterBake; #if UNITY_EDITOR UnityEditor.EditorUtility.SetDirty(this); #endif } version = VERSION; } #if UNITY_EDITOR [ContextMenu("Create Mesh Baker Settings Asset")] public void CreateMeshBakerSettingsAsset() { string newFilePath = UnityEditor.EditorUtility.SaveFilePanelInProject("New Mesh Baker Settings", "MeshBakerSettings", "asset", "Create a new Mesh Baker Settings Asset"); if (newFilePath != null) { MB3_MeshCombinerSettings asset = ScriptableObject.CreateInstance(); UnityEditor.AssetDatabase.CreateAsset(asset, newFilePath); } } [ContextMenu("Copy settings from Shared Settings")] public void CopyMySettingsToAssignedSettingsAsset() { if (meshCombiner.settingsHolder == null) { Debug.LogError("No Shared Settings Asset Assigned."); return; } UnityEditor.Undo.RecordObject(this, "Undo copy settings"); _CopySettings(meshCombiner.settingsHolder.GetMeshBakerSettings(), meshCombiner); Debug.Log("Copied settings from assigned Shared Settings to this Mesh Baker."); UnityEditor.EditorUtility.SetDirty(this); } [ContextMenu("Copy settings to Shared Settings")] public void CopyAssignedSettingsAssetToMySettings() { if (meshCombiner.settingsHolder == null) { Debug.LogError("No Shared Settings Asset Assigned."); return; } if (meshCombiner.settingsHolder is UnityEngine.Object) UnityEditor.Undo.RecordObject((UnityEngine.Object)meshCombiner.settingsHolder, "Undo copy settings"); _CopySettings(meshCombiner, meshCombiner.settingsHolder.GetMeshBakerSettings()); Debug.Log("Copied settings from this Mesh Baker to the assigned Shared Settings asset."); if (meshCombiner.settingsHolder is UnityEngine.Object) UnityEditor.EditorUtility.SetDirty((UnityEngine.Object)meshCombiner.settingsHolder); } void _CopySettings(MB_IMeshBakerSettings src, MB_IMeshBakerSettings targ) { targ.clearBuffersAfterBake = src.clearBuffersAfterBake; targ.doBlendShapes = src.doBlendShapes; targ.doCol = src.doCol; targ.doNorm = src.doNorm; targ.doTan = src.doTan; targ.doUV = src.doUV; targ.doUV3 = src.doUV3; targ.doUV4 = src.doUV4; targ.doUV5 = src.doUV5; targ.doUV6 = src.doUV6; targ.doUV7 = src.doUV7; targ.doUV8 = src.doUV8; targ.optimizeAfterBake = src.optimizeAfterBake; targ.pivotLocationType = src.pivotLocationType; targ.lightmapOption = src.lightmapOption; targ.renderType = src.renderType; targ.uv2UnwrappingParamsHardAngle = src.uv2UnwrappingParamsHardAngle; targ.uv2UnwrappingParamsPackMargin = src.uv2UnwrappingParamsPackMargin; } #endif public override MB2_TextureBakeResults textureBakeResults { get { return meshCombiner.textureBakeResults; } set { meshCombiner.textureBakeResults = value; } } public override List GetObjectsToCombine() { if (useObjsToMeshFromTexBaker) { MB3_TextureBaker tb = gameObject.GetComponent(); if (tb == null && gameObject.transform.parent != null) tb = gameObject.transform.parent.GetComponent(); if (tb != null) { return tb.GetObjectsToCombine(); } else { Debug.LogWarning("Use Objects To Mesh From Texture Baker was checked but no texture baker"); return new List(); } } else { if (objsToMesh == null) objsToMesh = new List(); return objsToMesh; } } [ContextMenu("Purge Objects to Combine of null references")] public override void PurgeNullsFromObjectsToCombine() { if (useObjsToMeshFromTexBaker) { MB3_TextureBaker tb = gameObject.GetComponent(); if (tb == null && gameObject.transform.parent != null) { tb = gameObject.transform.parent.GetComponent(); } if (tb != null) { tb.PurgeNullsFromObjectsToCombine(); } else { Debug.LogWarning("Use Objects To Mesh From Texture Baker was checked but no texture baker, could not purge"); } } else { if (objsToMesh == null) { objsToMesh = new List(); } Debug.Log(string.Format("Purged {0} null references from objects to combine list.", objsToMesh.RemoveAll(obj => obj == null))); } } public void EnableDisableSourceObjectRenderers(bool show) { for (int i = 0; i < GetObjectsToCombine().Count; i++) { GameObject go = GetObjectsToCombine()[i]; if (go != null) { Renderer mr = MB_Utility.GetRenderer(go); if (mr != null) { mr.enabled = show; } LODGroup lodG = mr.GetComponentInParent(); if (lodG != null) { bool isOnlyInGroup = true; LOD[] lods = lodG.GetLODs(); for (int j = 0; j < lods.Length; j++) { for (int k = 0; k < lods[j].renderers.Length; k++) { if (lods[j].renderers[k] != mr) { isOnlyInGroup = false; break; } } } if (isOnlyInGroup) { lodG.enabled = show; } } } } } /// /// Clears the meshs and mesh related data but does not destroy it. /// public virtual void ClearMesh() { UpgradeToCurrentVersionIfNecessary(); meshCombiner.ClearMesh(); } public virtual void ClearMesh(MB2_EditorMethodsInterface editorMethods) { UpgradeToCurrentVersionIfNecessary(); meshCombiner.ClearMesh(editorMethods); } /// /// Clears and desroys the mesh. Clears mesh related data. /// public virtual void DestroyMesh() { UpgradeToCurrentVersionIfNecessary(); meshCombiner.DestroyMesh(); } public virtual void DestroyMeshEditor(MB2_EditorMethodsInterface editorMethods) { meshCombiner.DestroyMeshEditor(editorMethods); } public virtual int GetNumObjectsInCombined() { return meshCombiner.GetNumObjectsInCombined(); } public virtual int GetNumVerticesFor(GameObject go) { return meshCombiner.GetNumVerticesFor(go); } /// /// Gets the texture baker on this component or its parent if it exists /// /// The texture baker. public MB3_TextureBaker GetTextureBaker() { MB3_TextureBaker tb = GetComponent(); if (tb != null) return tb; if (transform.parent != null && gameObject.transform.parent != null) return transform.parent.GetComponent(); return null; } /// /// Adds and deletes objects from the combined mesh. gos and deleteGOs can be null. /// You need to call Apply or ApplyAll to see the changes. /// objects in gos must not include objects already in the combined mesh. /// objects in gos and deleteGOs must be the game objects with a Renderer component /// This method is slow, so should be called as infrequently as possible. /// /// /// The first generated combined mesh /// /// /// gos. Array of objects to add to the combined mesh. Array can be null. Must not include objects /// already in the combined mesh. Array must contain game objects with a render component. /// /// /// deleteGOs. Array of objects to delete from the combined mesh. Array can be null. /// /// /// Disable renderer component on objects in gos after they have been added to the combined mesh. /// /// /// Whether to fix out of bounds UVs in meshes as they are being added. This paramater should be set to the same as the combined material. /// /// public abstract bool AddDeleteGameObjects(GameObject[] gos, GameObject[] deleteGOs, bool disableRendererInSource = true); /// /// This is the best version to use for deleting game objects since the source GameObjects may have been destroyed /// Internaly Mesh Baker only stores the instanceID for Game Objects, so objects can be removed after they have been destroyed /// public abstract bool AddDeleteGameObjectsByID(GameObject[] gos, int[] deleteGOinstanceIDs, bool disableRendererInSource = true); /// /// Apply changes to the mesh. All channels set in this instance will be set in the combined mesh. /// public virtual bool Apply(MB3_MeshCombiner.GenerateUV2Delegate uv2GenerationMethod = null) { UpgradeToCurrentVersionIfNecessary(); meshCombiner.name = name + "-mesh"; bool success = meshCombiner.Apply(uv2GenerationMethod); if (parentSceneObject != null && meshCombiner.resultSceneObject != null) { meshCombiner.resultSceneObject.transform.parent = parentSceneObject; } return success; } /// /// Applys the changes to flagged properties of the mesh. This method is slow, and should only be called once per frame. The speed is directly proportional to the number of flags that are true. Only apply necessary properties. /// public virtual bool Apply(bool triangles, bool vertices, bool normals, bool tangents, bool uvs, bool uv2, bool uv3, bool uv4, bool colors, bool bones = false, bool blendShapesFlag = false, MB3_MeshCombiner.GenerateUV2Delegate uv2GenerationMethod = null) { UpgradeToCurrentVersionIfNecessary(); meshCombiner.name = name + "-mesh"; bool success = meshCombiner.Apply(triangles, vertices, normals, tangents, uvs, uv2, uv3, uv4, colors, bones, blendShapesFlag, uv2GenerationMethod); if (parentSceneObject != null && meshCombiner.resultSceneObject != null) { meshCombiner.resultSceneObject.transform.parent = parentSceneObject; } return success; } public virtual bool CombinedMeshContains(GameObject go) { return meshCombiner.CombinedMeshContains(go); } /// /// Updates the data in the combined mesh for meshes that are already in the combined mesh. /// This is faster than adding and removing a mesh and has a much lower memory footprint. /// This method can only be used if the meshes being updated have the same layout(number of /// vertices, triangles, submeshes). /// This is faster than removing and re-adding /// For efficiency update as few channels as possible. /// Apply must be called to apply the changes to the combined mesh /// public virtual bool UpdateGameObjects(GameObject[] gos) { UpgradeToCurrentVersionIfNecessary(); meshCombiner.name = name + "-mesh"; return meshCombiner.UpdateGameObjects(gos, true, true, true, true, true, false, false, false, false, false, false, false, false, false); } /// /// Updates the data in the combined mesh for meshes that are already in the combined mesh. /// This is faster than adding and removing a mesh and has a much lower memory footprint. /// This method can only be used if the meshes being updated have the same layout(number of /// vertices, triangles, submeshes). /// This is faster than removing and re-adding /// For efficiency update as few channels as possible. /// Apply must be called to apply the changes to the combined mesh /// public virtual bool UpdateGameObjects(GameObject[] gos, bool updateBounds) { UpgradeToCurrentVersionIfNecessary(); meshCombiner.name = name + "-mesh"; return meshCombiner.UpdateGameObjects(gos, true, true, true, true, true, false, false, false, false, false, false, false, false, false); } /// /// Updates the data in the combined mesh for meshes that are already in the combined mesh. /// This is faster than adding and removing a mesh and has a much lower memory footprint. /// This method can only be used if the meshes being updated have the same layout(number of /// vertices, triangles, submeshes). /// This is faster than removing and re-adding /// For efficiency update as few channels as possible. /// Apply must be called to apply the changes to the combined mesh /// public virtual bool UpdateGameObjects(GameObject[] gos, bool recalcBounds, bool updateVertices, bool updateNormals, bool updateTangents, bool updateUV, bool updateUV1, bool updateUV2, bool updateColors, bool updateSkinningInfo) { UpgradeToCurrentVersionIfNecessary(); meshCombiner.name = name + "-mesh"; return meshCombiner.UpdateGameObjects(gos, recalcBounds, updateVertices, updateNormals, updateTangents, updateUV, updateUV2, false, false, updateColors, updateSkinningInfo); } /// /// Updates the data in the combined mesh for meshes that are already in the combined mesh. /// This is faster than adding and removing a mesh and has a much lower memory footprint. /// This method can only be used if the meshes being updated have the same layout(number of /// vertices, triangles, submeshes). /// This is faster than removing and re-adding /// For efficiency update as few channels as possible. /// Apply must be called to apply the changes to the combined mesh /// public virtual bool UpdateGameObjects(GameObject[] gos, bool recalcBounds, bool updateVertices, bool updateNormals, bool updateTangents, bool updateUV, bool updateUV2, bool updateUV3, bool updateUV4, bool updateUV5, bool updateUV6, bool updateUV7, bool updateUV8, bool updateColors, bool updateSkinningInfo) { UpgradeToCurrentVersionIfNecessary(); meshCombiner.name = name + "-mesh"; return meshCombiner.UpdateGameObjects(gos, recalcBounds, updateVertices, updateNormals, updateTangents, updateUV, updateUV2, updateUV3, updateUV4, updateUV5, updateUV6, updateUV7, updateUV8, updateColors, updateSkinningInfo); } public virtual void UpdateSkinnedMeshApproximateBounds() { if (_ValidateForUpdateSkinnedMeshBounds()) { meshCombiner.UpdateSkinnedMeshApproximateBounds(); } } public virtual void UpdateSkinnedMeshApproximateBoundsFromBones() { if (_ValidateForUpdateSkinnedMeshBounds()) { meshCombiner.UpdateSkinnedMeshApproximateBoundsFromBones(); } } public virtual void UpdateSkinnedMeshApproximateBoundsFromBounds() { if (_ValidateForUpdateSkinnedMeshBounds()) { meshCombiner.UpdateSkinnedMeshApproximateBoundsFromBounds(); } } protected virtual bool _ValidateForUpdateSkinnedMeshBounds() { if (meshCombiner.outputOption == MB2_OutputOptions.bakeMeshAssetsInPlace) { Debug.LogWarning("Can't UpdateSkinnedMeshApproximateBounds when output type is bakeMeshAssetsInPlace"); return false; } if (meshCombiner.resultSceneObject == null) { Debug.LogWarning("Result Scene Object does not exist. No point in calling UpdateSkinnedMeshApproximateBounds."); return false; } SkinnedMeshRenderer smr = meshCombiner.resultSceneObject.GetComponentInChildren(); if (smr == null) { Debug.LogWarning("No SkinnedMeshRenderer on result scene object."); return false; } return true; } }