hiding place sctipts and player interaction

This commit is contained in:
2026-03-31 13:35:14 +02:00
parent 667ff8acce
commit a2e2ddd172
2128 changed files with 48384 additions and 339204 deletions

View File

@@ -0,0 +1,19 @@
using System;
using UnityEngine;
using UnityEngine.Events;
[Serializable]
public class HidingStep
{
[Tooltip("A UI-on megjelenő szöveg ehhez a lépéshez, pl: 'Öntsd be a port'")]
public string promptText;
[Tooltip("Milyen tárgy kell ehhez a lépéshez?")]
public ItemType requiredItem;
[Tooltip("Elpusztuljon a tárgy a játékos kezéből a lépés után?")]
public bool consumeItem = true;
[Tooltip("Mi történjen vizuálisan? (Animáció, hang, stb.)")]
public UnityEvent OnStepCompleted;
}