Scriptum/Assets/Scripts/Item/PickableController.cs

79 lines
1.8 KiB
C#
Raw Normal View History

2022-04-19 16:18:30 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2022-05-29 12:33:43 +02:00
using System;
2022-04-19 16:18:30 +02:00
2022-05-15 18:54:59 +02:00
public class PickableController : MonoBehaviour
2022-04-19 16:18:30 +02:00
{
2022-05-29 21:54:28 +02:00
public EquippableItem item;
public string name;
public string name2;
public bool triggered;
public int isPicked;
2022-05-15 18:54:59 +02:00
public int HandleIndexInScelenObjectList;
2022-05-15 18:54:59 +02:00
public void Start()
{
// if object after beeing created by Instaniate() gets "Clone)" postfix, EquippableItem.name gets this
2022-05-15 18:54:59 +02:00
item.Name = gameObject.name;
// if (PlayerPrefs.GetInt("continued") == 1)
// {
// isPicked = PlayerPrefs.GetInt(name2);
// }
// else
// {
// isPicked = PlayerPrefs.GetInt(name);
// }
if(isPicked == 1)
{
//gameObject.SetActive(false);
Destroy(gameObject);
}
2022-05-15 18:54:59 +02:00
}
void Update()
{
if(triggered)
{
if (Input.GetKeyDown(KeyCode.E))
{
if(InventoryManager.Instance.AddToInventory(this.item) >= 0)
{
isPicked = 1;
//PlayerPrefs.SetInt(name, isPicked);
//gameObject.SetActive(false);
SceneEquippableItemManager.Instance.RemoveDynamicItem(item.name); // remove
Destroy(gameObject);
}else
{
Debug.LogError("Can't pick item - Your inventory is full");
}
}
}
}
2022-04-19 16:18:30 +02:00
private void OnTriggerEnter2D(Collider2D collision)
{
if (collision.tag == "Player")
{
triggered = true;
2022-04-19 16:18:30 +02:00
}
}
private void OnTriggerExit2D(Collider2D collision)
{
triggered = false;
}
// public void SaveCheckpoint()
// {
// PlayerPrefs.SetInt(name2, isPicked);
// }
2022-04-19 16:18:30 +02:00
}