Scriptum/Assets/Scripts/Objects/GoldOre.cs

41 lines
1.2 KiB
C#
Raw Normal View History

2022-06-16 20:00:19 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
2022-06-16 20:00:19 +02:00
public class GoldOre : MonoBehaviour
{
[SerializeField] public GameObject goldOre;
2022-06-16 20:00:19 +02:00
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void DropItem()
{
GameObject globalGUI = GameObject.FindGameObjectWithTag("ItemCollection");
2022-06-16 20:00:19 +02:00
if(globalGUI)
{
GameObject droppedItem = Instantiate(goldOre, gameObject.transform.position, Quaternion.identity, globalGUI.transform);
// Object and also ith binded piclable object gets "(Clone)" to its names - we must cut it
droppedItem.name = goldOre.name;
2023-01-08 18:50:10 +01:00
droppedItem.transform.localScale = new Vector3(2, 2, 2);
//droppedItem.GetComponent<PickableController>().item.name = goldOre.name;
//droppedItem.GetComponent<PickableController>().HandleIndexInScelenObjectList =
SceneEquippableItemManager.Instance.AddDynamicItem(droppedItem);
2022-06-16 20:00:19 +02:00
} else {
Debug.Log("Can't find global GUI object!!!");
}
}
}