Liberi
An exergame built for kids with CP!
LineRendererHooks.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using Janus;
5 using System.Linq;
6 using System.Reflection;
7 using System;
8 
12 [AddComponentMenu("Liberi/Line Renderer Hooks")]
13 [RequireComponent(typeof(LineRenderer))]
14 [ExecuteInEditMode]
15 [Script(ScriptRole.View)]
16 public class LineRendererHooks : MonoBehaviour
17 {
18  public Transform EndPoint1;
19  public Transform EndPoint2;
20  public int VertexCount = 2;
21  public bool FixedZ = true;
22 
23  LineRenderer _line;
24 
25  void Awake ()
26  {
27  _line = GetComponent<LineRenderer>();
28 
29  LateUpdate();
30  }
31 
32  void LateUpdate ()
33  {
34  if (EndPoint1 == null || EndPoint2 == null)
35  return;
36 
37  _line.SetVertexCount(VertexCount);
38 
39  Vector3 delta = EndPoint2.position - EndPoint1.position;
40  float length = delta.magnitude;
41  Vector3 direction = length == 0 ? Vector3.zero : delta / length;
42  float z = transform.position.z;
43 
44  for (int i = 0; i < VertexCount; i++)
45  {
46  float progress = (float)i / (VertexCount - 1);
47 
48  Vector3 newVertex = EndPoint1.position + direction * progress * length;
49 
50  if (FixedZ)
51  newVertex.z = z;
52 
53  _line.SetPosition(i, newVertex);
54  }
55  }
56 }
Allows a line renderer to automatically hook onto and follow two end points.