Unity - Open Door, with Safe Code.

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ธ.ค. 2024

ความคิดเห็น • 28

  • @UncleJezus
    @UncleJezus 2 ปีที่แล้ว +3

    I'm really struggling to find a tutorial that'll be useful for my project. This tutorial really helps! Appreciate you shared this.

  • @lovecrypto4979
    @lovecrypto4979 2 ปีที่แล้ว +1

    Thank you for your tutorial.
    I was just looking for how to open the door with PIN number.

  • @chaimabensalem1885
    @chaimabensalem1885 2 ปีที่แล้ว +1

    Fantastic tutorial!! thanks for the help!!!!

  • @katerinaorgandzhieva4106
    @katerinaorgandzhieva4106 ปีที่แล้ว +1

    Amazing video, thank you! Keep up the good work :)

  • @vikriereonaldo4933
    @vikriereonaldo4933 ปีที่แล้ว

    Thanks for tutorial

  • @kazyha
    @kazyha 7 หลายเดือนก่อน +1

    Thanks you very much!

  • @facusandoval4074
    @facusandoval4074 2 ปีที่แล้ว

    Thank you, bro!!

  • @dxvl2125
    @dxvl2125 2 หลายเดือนก่อน +1

    i cant press the buttons on the code

  • @missoo7128
    @missoo7128 7 หลายเดือนก่อน

    Thank you❤

  • @ripgojo
    @ripgojo ปีที่แล้ว

    When i press e my character teleports away. Like sometiems when i want to put in the code i press e for the pop up and im teleported behind the wall next to me

  • @أريجالشمري-س6ش
    @أريجالشمري-س6ش 2 ปีที่แล้ว

    I do the same thing but the keypad doesn't appear do you have any idea thanx for the video

  • @yungluap7212
    @yungluap7212 ปีที่แล้ว

    Can i use this also in VR?

  • @RyanKitchen-x8c
    @RyanKitchen-x8c ปีที่แล้ว

    how do i add a sound to every time you click a button

    • @ClipCollectionVault
      @ClipCollectionVault  ปีที่แล้ว

      You Can check my Tutorial about Sound manager, there it id easy to add it

  • @walidbenothmen7741
    @walidbenothmen7741 2 ปีที่แล้ว

    great video but i have a problem when i enter the code to open the door i have to click many times to get the number.

    • @ClipCollectionVault
      @ClipCollectionVault  2 ปีที่แล้ว +1

      Hi, Can you share your code, then, I Can take a look ?

    • @walidbenothmen7741
      @walidbenothmen7741 2 ปีที่แล้ว

      @@ClipCollectionVault okay...
      using System.Collections;
      using System.Collections.Generic;
      using UnityEngine;
      using TMPro;
      public class OpenDoor : MonoBehaviour
      {
      private Animator anim;
      private bool IsAtDoor = false;
      [SerializeField] private TextMeshProUGUI CodeText;
      string CodeTextValue = "";
      public string safeCode;
      public GameObject CodePanel;
      // Start is called before the first frame update
      void Start()
      {
      anim = GetComponent();
      }
      // Update is called once per frame
      void Update()
      {
      CodeText.text = CodeTextValue;
      if(CodeTextValue == safeCode)
      {
      anim.SetTrigger("OpenDoor");
      CodePanel.SetActive(false);
      }
      if(CodeTextValue.Length >= 4)
      {
      CodeTextValue = "";
      }
      if(Input.GetKey(KeyCode.E) && IsAtDoor ==true)
      {
      CodePanel.SetActive(true);
      }

      }
      private void OnTriggerEnter(Collider other)
      {
      if (other.tag == "Player")
      {
      IsAtDoor = true;
      }
      }
      private void OnTriggerExit(Collider other)
      {
      IsAtDoor = false;
      CodePanel.SetActive(false);
      }
      public void AddDigit(string digit)
      {
      CodeTextValue += digit;
      }
      }

    • @ClipCollectionVault
      @ClipCollectionVault  2 ปีที่แล้ว +2

      @@walidbenothmen7741 code looks correct, so do you need to click the numbers, many times before it writes it ? Are there a thing blocking the number ? Other objects ?

  • @morarogames
    @morarogames 2 ปีที่แล้ว

    thank you :(

    • @ClipCollectionVault
      @ClipCollectionVault  2 ปีที่แล้ว

      Did you get it to work ?

    • @morarogames
      @morarogames 2 ปีที่แล้ว +1

      @@ClipCollectionVault yes thank you but i need one more thing if you can i want the game to write pres e to open keypad