i have this script … and not work …
//script
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ItemIndicator : MonoBehaviour
{
public FPSItemPlacing Itemplacing;
public bool _isInObject = false;
public GameObject ItemIndicatorNo;
public Renderer rend;
void Start ()
{
rend = GetComponent();
rend.enabled = true;
if (Itemplacing == null)
Itemplacing = GameObject.FindGameObjectsWithTag(“BuildingPlan”);
}
//error
error CS0029: Cannot implicitly convert type UnityEngine.GameObject[ ]' to
FPSItemPlacing’