| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class BuildingGhost2D : MonoBehaviour {
- private Transform visual;
- private PlacedObjectTypeSO placedObjectTypeSO;
- private void Start() {
- RefreshVisual();
- GridBuildingSystem2D.Instance.OnSelectedChanged += Instance_OnSelectedChanged;
- }
- private void Instance_OnSelectedChanged(object sender, System.EventArgs e) {
- RefreshVisual();
- }
- private void LateUpdate() {
- Vector3 targetPosition = GridBuildingSystem2D.Instance.GetMouseWorldSnappedPosition();
- transform.position = Vector3.Lerp(transform.position, targetPosition, Time.deltaTime * 15f);
- transform.rotation = Quaternion.Lerp(transform.rotation, GridBuildingSystem2D.Instance.GetPlacedObjectRotation(), Time.deltaTime * 15f);
- }
- private void RefreshVisual() {
- if (visual != null) {
- Destroy(visual.gameObject);
- visual = null;
- }
- PlacedObjectTypeSO placedObjectTypeSO = GridBuildingSystem2D.Instance.GetPlacedObjectTypeSO();
- if (placedObjectTypeSO != null) {
- visual = Instantiate(placedObjectTypeSO.visual, Vector3.zero, Quaternion.identity);
- visual.parent = transform;
- visual.localPosition = Vector3.zero;
- visual.localEulerAngles = Vector3.zero;
- }
- }
- }
|