How to Make a Game with Visual Scripting (E02) - Gameplay Loop - Unity 2021 Tutorial (Bolt)

Поділитися
Вставка
  • Опубліковано 1 жов 2024

КОМЕНТАРІ • 105

  • @theironrouge4919
    @theironrouge4919 3 роки тому +13

    WHY DOES THIS VIDEO HAVE ONLY 700 VIEWS AND 12 COMMENTS.
    I NEEDS MUCH MORE THAN THESE MEASLY AMOUNTS OF PEOPLE WATCHING IT.
    amazing work btw.

    • @plomek5039
      @plomek5039 3 роки тому

      I love that it has 240 likes and just one disslike

  • @energizerhusky
    @energizerhusky 3 роки тому +17

    Would it be possible to go over basic concepts of visual scripting? like a video on general terms and tips you can do to have a good foundation of it? such how you explained the physics box in the first video

    • @SentryX7
      @SentryX7 Рік тому +2

      WATCH NotSlot he help me soo much don't even know if you'll see this

  • @smashdriven1640
    @smashdriven1640 2 роки тому +16

    These are by far the best Unity tutorials I've ever seen.

    • @lemonezeey3548
      @lemonezeey3548 2 роки тому

      yes it is! and its not outdated im thinking to just abandon normal coding and go to visual coding

    • @fayolapurcell8223
      @fayolapurcell8223 Рік тому

      @@lemonezeey3548 I looked up the difference and apparently your options with visual coding are a bit restricted, but I'm not giving up visual coding until i see something that I can't do without old fashioned, ancient C scripting

  • @devanshuamreliya6814
    @devanshuamreliya6814 3 роки тому +9

    Your content is beginner friendly which I love as I am just starting to lear unity. Keep it up making this tutorial I am loving it.

  • @feritye767
    @feritye767 Рік тому +1

    I did everything right in the coin graph but the coin is not disappearing when it collides with the player

  • @tech_boss_gamerYT
    @tech_boss_gamerYT 2 роки тому +1

    Bro I have made the coins script but it's not working I added every node told but it isn't working please help

  • @Obumbro
    @Obumbro 3 роки тому +4

    Amazing work! Keep'em coming, I'll join on Patreon soon!

  • @hainamlion
    @hainamlion 2 роки тому +1

    Um when the box touched the coin it bounced. How do I fix this? Tysm. (Sometimes it make the camera glitch)

  • @gavitron0610
    @gavitron0610 2 роки тому +1

    Fix to coin. Use on collision enter, instead of on trigger enter which he used. I tried it and it fixed the coin glitch

  • @fayolapurcell8223
    @fayolapurcell8223 Рік тому +1

    I'm having so much fun. I have a bouncy cube with the texture of a coconut. :D

  • @nguyenkhaphuongvlogs
    @nguyenkhaphuongvlogs 3 роки тому +1

    Hi, I am following your tutorial, and I made my own version of this game, but I also add a 2.5D mini game where I want the cube to jump over the enemy. So how can I do that? Thank you
    P.S. I might also add double jump if possible.

  • @spoonikle
    @spoonikle 2 роки тому +1

    I did TONS of wiremod programming in Gmod.
    This visual programming feels like putting on pajamas and slippers after a day of hard labor.
    I may actually get some development done like this…

  • @pongsathorntangtard9877
    @pongsathorntangtard9877 3 роки тому +1

    For first, Thank you very much for making this kind of video. But I still have some question. First, How can I insert touch control to this game?, I have watched a tractor game episode and I tried to adapt a touch control from tractor game but It didn't work out. Second, How can I make an endless ground?

  • @SARANO-OK
    @SARANO-OK 11 місяців тому

    why i when i type on search i don't see scene manger node like you do in tutorial?

  • @aranguez3d261
    @aranguez3d261 2 роки тому +1

    my player trembles when the camera follows him, why?

  • @shadykitty7493
    @shadykitty7493 Рік тому

    i made it up to the coin the gave up cuz i have no idea how its working lol and idk if i can transfer it to another game

  • @deepankumaar9560
    @deepankumaar9560 3 роки тому +2

    hey bro do u know how to add a slow mo effect after the collision?

    • @SmartPenguins
      @SmartPenguins  3 роки тому +8

      You can use Set Time Scale unit, the default value is 1 and if you set it to 0 it will stop, so you can set it to .5 and that will make the game slow

  • @sk.mahdeemahbubsamy2857
    @sk.mahdeemahbubsamy2857 3 роки тому +1

    You saved my life....:)
    THANKS

  • @Dotten83
    @Dotten83 Рік тому

    ummm what should i do if i sudently get teleported far away from the code?
    oh wait nvm im stupid again

  • @manji3360
    @manji3360 Рік тому

    I cant manage to scroll left and right, I can only scroll up and down
    can anyone hep me with this

  • @noahfogerty5793
    @noahfogerty5793 5 місяців тому

    Awesome tutorials. Thank you man

  • @SnailSpaceWTF
    @SnailSpaceWTF 2 роки тому +1

    Thank you for authoring this. I follow darn-near all of it. Having watched many hours of VisualScripting vids and I get the pseudo-code nature of it quite well.
    I am confused on the theory of one thing though. Any time you have a Compare Tag, and you wire it to an IF, you drop the purple-output off the Compare, and into the Purple-Input on the IF.
    Why is this, what does that dot represent? Why not 'collider' out of the Trigger (for example) into the arrow of the [Compare], and out the arrow of the [Compare] into the arrow of the [IF]?
    I think, as I type this I see that, like a function, the 'collider' slot is there as we need to know what we're talking about, but was confused that they represent it on the output side of the [Trigger] Unit.
    Seeing this, still does not help me understand what the purple circles represent, as it's NOT 'false'. :/
    I hope you follow what I am saying and can take a moment to heal my ignorance.
    Breathe well tonight.

    • @SmartPenguins
      @SmartPenguins  2 роки тому +4

      The purple dot represents a Boolean value, 'True' or 'False'
      The Tag Compare takes the Component type input (and in unity most of the classes are also components), that is why we can pass in collider component into it, the unit gets the tag from that component and compares it with the String value that you put in, if they equal the output of purple is True if they are not the same the output is false
      the If unit works only with Booleans True or False any checks that you have to do to figure out if the condition is true or false you need to do before the If unit
      hope this helps

  • @elanbarenholtz
    @elanbarenholtz 2 роки тому +1

    Great video! I am having an issue with the collision detection. The tag it seems to be looking for in compare tag is 'Player' in order to make the condition true, rather than 'Enemy''. I set up the script on the Player object and did all of the tagging. Works for now but clearly not good down the road as I add more enemies.

  • @mfgaming8358
    @mfgaming8358 2 роки тому +1

    10:27

  • @Bannana756
    @Bannana756 2 роки тому +1

    4:30

  • @RussellMomentum
    @RussellMomentum Рік тому +1

    Loving the basics of this tutorial, thank you!!

  • @kittytangsze
    @kittytangsze Рік тому

    how to get an external variables?

  • @alexjr977
    @alexjr977 3 роки тому +1

    Hi ! Penguin
    i am not able to watch your videos cuz my exams are near and they will start from 20April
    Wish you good luck :) 🧡

    • @SmartPenguins
      @SmartPenguins  3 роки тому +1

      Get studying for the exams, and good luck!

  • @tuncayb.2408
    @tuncayb.2408 3 роки тому +1

    thanks man we really appreciate the work.

  • @fadofficialmusic
    @fadofficialmusic 2 роки тому

    I can't find.. Scene get name

  • @CraizyMotion
    @CraizyMotion Рік тому

    I am currently doing only 2D unity games as my laptop can hardly handle 3D and still struggles with 2D but in March I am getting a better computer and I will come back to this video for sure

  • @prodangersam8143
    @prodangersam8143 2 роки тому

    im stuck in the player script it has an error

  • @LutfiMelon
    @LutfiMelon 8 місяців тому

    why you not make this simple

  • @ggtiket
    @ggtiket 3 роки тому

    forgot to enable 'Is Trigger', cue 5 minutes of comparing script only to realize my mistake

  • @imandalaie5074
    @imandalaie5074 2 роки тому

    its awsome but too fast toooooooo fasssstttttttt

  • @ZaiFoxcoon
    @ZaiFoxcoon Рік тому +1

    Yay!Thank you again !!

  • @nv8505
    @nv8505 3 роки тому +1

    E02 is another excellent step by step tutorial that worked. I believe having Unity 2021 has solved a lot of issues moving forward with the process of visual scripting.
    I wonder if these compiled highlighted grouped scripts can be saved as presets for future projects?

    • @mistywhisp
      @mistywhisp 2 роки тому +1

      i think he explains that in the beginning of the first episode.

  • @sirwallkerz9166
    @sirwallkerz9166 3 роки тому +1

    Can someone help me? I don't find if in my bolt? 0:57

    • @SmartPenguins
      @SmartPenguins  3 роки тому +1

      it's called branch in Bolt

    • @sirwallkerz9166
      @sirwallkerz9166 3 роки тому

      @@SmartPenguins thanks👍 btw your vid was so easy to follow, thanks for it🙏

    • @sirwallkerz9166
      @sirwallkerz9166 3 роки тому

      @@SmartPenguins can i ask you a question? I downloaded the 3d model from sketchfab and used the animation from mixamo but it won't work, but if i choose the 3d model from maximo, it work, do you know to solve this problem, thanks🙏

  • @liorliv3
    @liorliv3 3 місяці тому

    How is your lighting so bright looking? Mine doesn't look like that :\

    • @liorliv3
      @liorliv3 3 місяці тому

      I've got it!! :) basically, you click the Global Volume layer (under Hierarchy tab on the left of the screen). Then you change the setting of the "Weight" Under the Volume tab from whatever number it's on, to 0. That should do the trick! :)
      Took me a lot of time to figure out! Good luck everyone :)

  • @ashfunworld3516
    @ashfunworld3516 Рік тому

    I am from the future and I use 2022.1. What if I don't have to make a new lighting?

  • @az2ert187
    @az2ert187 2 роки тому

    how can i change the "onTrigger Enter" to "self" cuz i have "this" and i cant change it.
    btw thank you so much now i can finaly learn hhow to make game!!.

  • @hnd1847
    @hnd1847 3 роки тому +1

    in my unity there's no "if" unit in the controls ? what am i going to do?

    • @SmartPenguins
      @SmartPenguins  3 роки тому +3

      if you using Bolt with Unity 2020 or older it will be Branch

  • @12.muchamadfazafadillah32
    @12.muchamadfazafadillah32 Рік тому

    My coin doesnt destroy if collision with the player :""

  • @AR_GAMINGWORLD
    @AR_GAMINGWORLD 3 місяці тому

    best tutorials

  • @grafee8584
    @grafee8584 3 роки тому

    how to change player model to a car model after completed all work!!

  • @wanderingtf2314
    @wanderingtf2314 2 роки тому

    7:41 the guy in your basement tryna break out

  • @gamedev9993
    @gamedev9993 Рік тому

    for the on collision enter i get a cannot be fetched dynamicly error

  • @smezey
    @smezey 2 роки тому

    i love these tutorials but tf dude. you're way to fast.

  • @NA_PLAYER
    @NA_PLAYER Рік тому

    Heyyy after I added the coin script my character just froze can you help me pls???

    • @SmartPenguins
      @SmartPenguins  Рік тому

      do you get any errors? Post a screen shot of the graph on Discord

    • @NA_PLAYER
      @NA_PLAYER Рік тому +1

      @@SmartPenguins no and i fixed it thanks though

  • @Zertfuh_
    @Zertfuh_ Рік тому

    thank you

  • @mrbhutani7479
    @mrbhutani7479 3 роки тому

    The Collision part if not working for me dont know why

  • @stephanizgo
    @stephanizgo 3 роки тому

    It said to me Invalid operation forwardSpeed

  • @prowelddynamics
    @prowelddynamics Рік тому

    for some reason after i added the restart and collide timer stuff my player moves to the right and i have to fight it to go straight what did i miss or cross and my player is blurry as it moves forward

    • @SmartPenguins
      @SmartPenguins  Рік тому

      If you still having problem with this, you can post a screenshot of the graph on our discord channel so I can take a look at it.

  • @mfgaming8358
    @mfgaming8358 2 роки тому

    10: 27

  • @Storm_AD
    @Storm_AD 3 роки тому

    Bruh that thumbnail scared me!

  • @damminplays4199
    @damminplays4199 2 роки тому

    8:25

  • @potatochip2010
    @potatochip2010 3 роки тому

    who is the one guy who disliked this video

  • @cyanraven8431
    @cyanraven8431 2 роки тому

    2:00 How i didn't understand that one

  • @alex.g7317
    @alex.g7317 Рік тому

    At 8:04 I can't switch 'This' to 'Self'
    Help pls

  • @kirillwow
    @kirillwow 2 роки тому

    Супер! Очень нравятся твои видео! Спасибо!

  • @lukenell2424
    @lukenell2424 3 роки тому +1

    help pls i cant find if unit hepl pls

    • @SmartPenguins
      @SmartPenguins  3 роки тому +1

      If you using unity 2019 or 2020 it's called Branch

    • @princeali7697
      @princeali7697 3 роки тому

      @@SmartPenguins Thanks ❤❤

  • @LunaciousZ
    @LunaciousZ 3 роки тому

    Thank you for the great tutorials!

  • @Zetrox.36
    @Zetrox.36 3 роки тому

    wow thank you so much

  • @marcusblythemanubay1017
    @marcusblythemanubay1017 3 роки тому

    I don't have transform get position

  • @potantirittisak8494
    @potantirittisak8494 3 роки тому

    Thanks!!

  • @warrenayiss3012
    @warrenayiss3012 3 роки тому

    Thank you

  • @adhikrishna701
    @adhikrishna701 3 роки тому

    What is the function get scene name??

    • @SmartPenguins
      @SmartPenguins  3 роки тому

      It gets the name of the scene that you pass into it

  • @atulwedssom1748
    @atulwedssom1748 3 роки тому

    I cant find if unit in bolt now pls help

  • @SPDirrako
    @SPDirrako 3 роки тому

    i don't have " If " ?

    • @SmartPenguins
      @SmartPenguins  3 роки тому

      If you using Unity 2020 or older it will be Branch

    • @SPDirrako
      @SPDirrako 3 роки тому

      @@SmartPenguins i found it, Branch is same If, i am a beginner, thank you

  • @ScrubInstitute
    @ScrubInstitute 3 роки тому +1

    What a amazing tutor! Same as brakeys! ❤

  • @farmder7877
    @farmder7877 2 роки тому

    i cant put that if thing 00:59

  • @darkyk849
    @darkyk849 3 роки тому

    Amazing Video