mirror of
https://github.com/nothke/quality-control.git
synced 2024-11-10 04:53:41 +00:00
23 lines
478 B
C#
23 lines
478 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class LineAttachEnd : MonoBehaviour
|
|
{
|
|
public Transform anchor;
|
|
|
|
LineRenderer _line;
|
|
LineRenderer line { get { if (!_line) _line = GetComponent<LineRenderer>(); return _line; } }
|
|
|
|
private void Start()
|
|
{
|
|
line.useWorldSpace = true;
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
line.SetPosition(0, transform.position);
|
|
line.SetPosition(1, anchor.position);
|
|
}
|
|
}
|