How To Create Simple 3 Digit Code Lock Combination Feature For 3D Game Made With Unity Software

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • #unitytutorial #unitypadlock #unitydigitpadlock
    In this video, I create a simple digit code lock combination feature. I rotate lock wheels and when the combination is correct a lock is opened somewhere.
    TO BLAST! - My New Fun Relaxing Puzzle Game Available On Google Play Store
    play.google.co...
    Consider purchasing my ULTIMATE UDEMY COURSE with great discount and get access to all of the downloadable resources from all of the tutorials once and forever
    www.udemy.com/...
    If you like what I'm doing then you can support me through
    www.patreon.com/alexanderzotov
    or here
    www.paypal.me/...
    Thank you)
    What this video is about and what it can be used for also: unity 3d tutorial,
    How To Create Simple Code Lock Combination Feature For 3D Game Made With Unity Software, unity code lock feature, unity code lock, unity code lock, unity padlock, unity padlock combination, unity padlock rotate, unity rotate padlock, unity spinning padlock, unity 3 digit padlock, unity digit padlock, unity number padlock, unity digit padlock feature, unity open padlock, unity open padlock combination, learn unity fast, unity tutorial, how to make games with unity, unity how to make game, unity how to make 2d game, not as good as brackeys but good as well.

Комментарии • 30

  • @abencomo
    @abencomo Год назад +3

    Very cool tutorial! Thank you, Alexander, for putting it together and sharing it. Where did you get the Wheel asset?

  • @andyevans4966
    @andyevans4966 4 года назад

    Works really well and simple to follow. thank you

  • @yaserbahzad2591
    @yaserbahzad2591 5 лет назад +3

    As usual Alex, nice job

  • @chickenbacon6763
    @chickenbacon6763 5 лет назад +1

    Thanks for this! It works perfectly :)

  • @blindmanaction6201
    @blindmanaction6201 8 дней назад

    where did u get the wheel from?

  • @1234yokee
    @1234yokee 3 года назад +3

    Sir ..Can i get the source link of scripts and objects?

  • @random_precision_software
    @random_precision_software 5 лет назад

    About time for some 3D 👍😀

  • @hrishikeshgarud7177
    @hrishikeshgarud7177 5 лет назад +4

    Nice. But how you created the wheel?

    • @Orsonster
      @Orsonster Год назад

      well, i just 3d modeled one. dont know what he did though

  • @zuziv1518
    @zuziv1518 3 года назад

    Thankss

  • @takrimschannel1730
    @takrimschannel1730 5 лет назад +1

    Good work dude..☺😍

  • @arvindramachandran0
    @arvindramachandran0 5 лет назад +1

    nice work i love it :)

  • @boring1930
    @boring1930 5 лет назад +1

    can you make a video how to make a play button menu button

    • @The28studio
      @The28studio 5 лет назад

      What?

    • @boring1930
      @boring1930 5 лет назад

      menu button to keep in front of game

    • @digitutor3662
      @digitutor3662 4 года назад

      @@boring1930 Just add a button component and make it start a scene on button click.

  • @ashishpatel2448
    @ashishpatel2448 5 лет назад

    Create this video for unity 2d for score system please

  • @veeloh9189
    @veeloh9189 Год назад

    How do you make that wheel

  • @MusicsChillboys
    @MusicsChillboys 2 года назад

    padlock not rotate and not active?why its don't action?

  • @DBGOP-vs4vu
    @DBGOP-vs4vu 2 года назад +1

    can u give code of this

  • @premachithra5957
    @premachithra5957 5 лет назад

    Hi sir.can I get this tutorial in 2d

  • @goliyu12
    @goliyu12 3 года назад

    hey how can i randomize the correct answer?

    • @deadend85
      @deadend85 Год назад +1

      to set your own just add this line: public int num1, num2, num3, num4; then change this line: correctCombination = new int[] {num1, num2, num3, num4}; so if you want to make this random change the public int into a private int then create a function to create random ints from 1-9 and set it to equal each line. you could then call it at runtime.