RollOffTrace.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. public class RollOffTrace : MonoBehaviour {
  5. public Transform[] objs;
  6. public float[] rotates;
  7. public float time = 1;
  8. public float height = 2;
  9. public float rolloff = 0.3f;
  10. public bool faceToTarget = true;
  11. public float dist = 0;
  12. private float time_count = 0;
  13. private List<Transform> objs2;
  14. private List<Transform> objs3;
  15. private List<Vector3> lastPosition;
  16. private float real_height = 0;
  17. // Use this for initialization
  18. void Awake () {
  19. time_count = 0;
  20. objs2 = new List<Transform>();
  21. objs3 = new List<Transform>();
  22. lastPosition = new List<Vector3>();
  23. for (int i = 0; i < objs.Length; i++)
  24. {
  25. objs[i].transform.localPosition = Vector3.zero;
  26. objs[i].transform.localScale = Vector3.one;
  27. objs[i].transform.rotation = Quaternion.AngleAxis(rotates[i], gameObject.transform.forward);
  28. Transform t1 = objs[i].GetChild(0);
  29. t1.localPosition = Vector3.zero;
  30. t1.localScale = Vector3.one;
  31. t1.localRotation = Quaternion.AngleAxis(90, Vector3.up);
  32. objs2.Add(t1);
  33. Transform t2 = objs[i].GetChild(1);
  34. //if(t != null)
  35. {
  36. t2.localPosition = Vector3.zero;
  37. t2.localScale = Vector3.one;
  38. t2.localRotation = Quaternion.AngleAxis(90, Vector3.up);
  39. objs3.Add(t2);
  40. }
  41. lastPosition.Add(objs2[i].position);
  42. }
  43. }
  44. public void Reset()
  45. {
  46. time_count = 0;
  47. real_height = height * dist;
  48. for (int i = 0; i < objs.Length; i++)
  49. {
  50. objs[i].transform.localPosition = Vector3.zero;
  51. objs[i].transform.localScale = Vector3.one;
  52. objs[i].transform.rotation = Quaternion.AngleAxis(rotates[i], gameObject.transform.forward);
  53. Transform t1 = objs2[i];
  54. t1.localPosition = Vector3.zero;
  55. t1.localScale = Vector3.one;
  56. t1.localRotation = Quaternion.AngleAxis(90, Vector3.up);
  57. Transform t2 = objs3[i];
  58. //if(t != null)
  59. {
  60. t2.localPosition = Vector3.zero;
  61. t2.localScale = Vector3.one;
  62. t2.localRotation = Quaternion.AngleAxis(90, Vector3.up);
  63. }
  64. lastPosition[i] = (objs2[i].position);
  65. }
  66. }
  67. // Update is called once per frame
  68. void Update () {
  69. time_count += Time.deltaTime;
  70. float t = time_count / time;
  71. if (t > 1) return;
  72. if(t <= rolloff)//上升阶段
  73. {
  74. Vector3 pos = Vector3.up * real_height * Mathf.Sin(t / rolloff * Mathf.PI / 2);
  75. for (int i = 0; i < objs.Length; i++)
  76. {
  77. objs2[i].transform.localPosition = pos;
  78. //if(i < objs3.Count -1 && objs3[i] != null)
  79. objs3[i].transform.localPosition = pos;
  80. //objs2[i].transform.localRotation = Quaternion.AngleAxis(rotates[i], Vector3.up);
  81. if (faceToTarget)
  82. {
  83. objs2[i].transform.forward = objs2[i].transform.position - lastPosition[i];
  84. lastPosition[i] = objs2[i].transform.position;
  85. }
  86. }
  87. }
  88. else//下降阶段
  89. {
  90. Vector3 pos = Vector3.up * real_height * Mathf.Cos((t- rolloff) / (1-rolloff) * 0.5f * Mathf.PI);
  91. for (int i = 0; i < objs.Length; i++)
  92. {
  93. objs2[i].transform.localPosition = pos;
  94. //if (i < objs3.Count - 1 && objs3[i] != null)
  95. objs3[i].transform.localPosition = pos;
  96. //objs2[i].transform.localRotation = Quaternion.AngleAxis(rotates[i], Vector3.up);
  97. if (faceToTarget)
  98. {
  99. objs2[i].transform.forward = objs2[i].transform.position - lastPosition[i];
  100. lastPosition[i] = objs2[i].transform.position;
  101. }
  102. }
  103. }
  104. }
  105. }