Como fazer uma gaveta na unidade
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Drawer : MonoBehaviour
{
private bool boxOpened;
private bool coroutineAllowed;
private Vector3 initialPosition;
// Start is called before the first frame update
void Start()
{
boxOpened = false;
coroutineAllowed = true;
initialPosition = transform.position;
}
void FixedUpdate()
{
Cursor.lockState = CursorLockMode.Locked;
Cursor.visible = false;
}
public void OnMouseDown()
{
Invoke("RunCoroutine", 0f);
}
private void RunCoroutine()
{
StartCoroutine("OpenThatDoor");
}
private IEnumerator OpenThatDoor()
{
coroutineAllowed = false;
if (!boxOpened)
{
for (float i = 0f; i <= 1f; i += 0.4f)
{
transform.localPosition = new Vector3(transform.localPosition.x + 0.1f,
transform.localPosition.y,
transform.localPosition.z);
yield return new WaitForSeconds(0f);
}
boxOpened = true;
}
else
{
for (float i = 1f; i >= 0f; i -= 0.4f)
{
transform.localPosition = new Vector3(transform.localPosition.x - 0.1f,
transform.localPosition.y,
transform.localPosition.z);
yield return new WaitForSeconds(0f);
}
transform.position = initialPosition;
boxOpened = false;
}
coroutineAllowed = true;
}
}
Azain daboss