#region License /* MIT License Copyright(c) 2019 Mattias Edlund Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #endregion using System; using UnityEngine; namespace UnityMeshSimplifier { /// /// A blend shape. /// [Serializable] public struct BlendShape { /// /// The name of the blend shape. /// public string ShapeName; /// /// The blend shape frames. /// public BlendShapeFrame[] Frames; /// /// Creates a new blend shape. /// /// The name of the blend shape. /// The blend shape frames. public BlendShape(string shapeName, BlendShapeFrame[] frames) { this.ShapeName = shapeName; this.Frames = frames; } } /// /// A blend shape frame. /// [Serializable] public struct BlendShapeFrame { /// /// The name of the blend shape this frame is associated with. /// public string shapeName; /// /// The weight of the blend shape frame. /// public float frameWeight; /// /// The delta vertices of the blend shape frame. /// public Vector3[] deltaVertices; /// /// The delta normals of the blend shape frame. /// public Vector3[] deltaNormals; /// /// The delta tangents of the blend shape frame. /// public Vector3[] deltaTangents; /// /// The vertex offset to be used in the combined mesh vertex array. /// public int vertexOffset; /// /// Creates a new blend shape frame. /// /// The weight of the blend shape frame. /// The delta vertices of the blend shape frame. /// The delta normals of the blend shape frame. /// The delta tangents of the blend shape frame. public BlendShapeFrame(float frameWeight, Vector3[] deltaVertices, Vector3[] deltaNormals, Vector3[] deltaTangents) { this.frameWeight = frameWeight; this.deltaVertices = deltaVertices; this.deltaNormals = deltaNormals; this.deltaTangents = deltaTangents; this.shapeName = ""; this.vertexOffset = -1; } public BlendShapeFrame(string shapeName, float frameWeight, Vector3[] deltaVertices, Vector3[] deltaNormals, Vector3[] deltaTangents, int vertexOffset) { this.shapeName = shapeName; this.frameWeight = frameWeight; this.deltaVertices = deltaVertices; this.deltaNormals = deltaNormals; this.deltaTangents = deltaTangents; this.vertexOffset = vertexOffset; } } }