MeshCreatorData.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /****************************************************************************
  2. Copyright (c) 2013, Jonathan Cecil and UCLA Game Lab
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are met:
  6. 1. Redistributions of source code must retain the above copyright notice, this
  7. list of conditions and the following disclaimer.
  8. 2. Redistributions in binary form must reproduce the above copyright notice,
  9. this list of conditions and the following disclaimer in the documentation
  10. and/or other materials provided with the distribution.
  11. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  12. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  13. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  14. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  15. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  16. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  17. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  18. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  19. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  20. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  21. *****************************************************************************/
  22. using UnityEngine;
  23. using System.Collections;
  24. public class MeshCreatorData : MonoBehaviour {
  25. public string errorMessage = "reinstall the mesh creator package.";
  26. // use this texture for creating the outine
  27. public Texture2D outlineTexture;
  28. public float pixelTransparencyThreshold = 255;
  29. public const float versionNumber = 0.7f;
  30. // settings for what the script will create
  31. public bool uvWrapMesh = true;
  32. public bool createEdges = true;
  33. public bool createBacksidePlane = false;
  34. // stores an automatically created material
  35. public Material frontMaterial;
  36. // total height, width, and depth of the resulting mesh
  37. public float meshHeight = 1.0f;
  38. public float meshWidth = 1.0f;
  39. public float meshDepth = 0.1f;
  40. // set center pivot offset
  41. public float pivotHeightOffset = 0.0f;
  42. public float pivotWidthOffset = 0.0f;
  43. public float pivotDepthOffset = 0.0f;
  44. // store the last pivot offset used so it can be subtracted from next
  45. public Vector3 lastPivotOffset = Vector3.zero;
  46. // collider settings
  47. public bool generateCollider = true;
  48. public bool usePrimitiveCollider = true;
  49. public bool useAABBCollider = false;
  50. public int maxNumberBoxes = 20;
  51. public bool useAutoGeneratedMaterial = false;
  52. public bool usePhysicMaterial = false;
  53. public PhysicMaterial physicMaterial;
  54. public bool setTriggers = false;
  55. public string idNumber = "";
  56. public bool mergeClosePoints = false;
  57. public float mergeDistance = 0.0f;
  58. }