tried to fix bug with silhouette

This commit is contained in:
BOT Alex 2024-04-21 03:21:23 +02:00
parent de408cf3d9
commit e81daa0302
1 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,8 @@ using System.Linq;
using Unity.Mathematics; using Unity.Mathematics;
using Unity.VisualScripting; using Unity.VisualScripting;
using UnityEngine; using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
public class TowerPlacementManager : MonoBehaviour public class TowerPlacementManager : MonoBehaviour
{ {
@ -154,7 +156,7 @@ public class TowerPlacementManager : MonoBehaviour
{ {
var comp = objScripts[i]; var comp = objScripts[i];
if (comp is not Renderer && comp is not Transform && comp is not MeshFilter) if (comp is not Renderer && comp is not Transform && comp is not MeshFilter && comp is not UIBehaviour)
{ {
Destroy(comp); Destroy(comp);
} }