using UnityEngine; [ExecuteInEditMode] [AddComponentMenu("UOP1/Tools/Click to Place")] public class ClickToPlaceHelper : MonoBehaviour { [Tooltip("Vertical offset above the clicked point. Useful to avoid spawn points to be directly ON the geometry which might cause issues.")] [SerializeField] private float _verticalOffset = 0.1f; private Vector3 _targetPosition; public bool IsTargeting { get; private set; } private void OnDrawGizmos() { if (IsTargeting) { Gizmos.color = Color.green; Gizmos.DrawCube(_targetPosition, Vector3.one * 0.3f); } } public void BeginTargeting() { IsTargeting = true; _targetPosition = transform.position; } public void UpdateTargeting(Vector3 spawnPosition) { _targetPosition = spawnPosition + Vector3.up * _verticalOffset; } public void EndTargeting() { IsTargeting = false; transform.position = _targetPosition; } }