유니티 Line Renderer 설정하기 및 오류 해결
Line Renderer 라인 렌더러 설정하기 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Line : MonoBehaviour { public Transform target; public Color c1 = Color.yellow; LineRenderer LR; void Start() { LR = GetComponent(); LR.widthMultiplier = 0.1f; //선 너비 LR.startColor = c1; //선 시작점 색 LR.endColor = c1; //선 끝점 색 } void Update() { if (Input.GetMouseButton(0)) { LR.SetP..