RyrExe
RyrExe
  • Видео 22
  • Просмотров 60 506
Godot 4.3 Tutorial , Flabby Plane Part 3, Destroying Player Character when out of the screen
In this part we will create boundaries so whenever player go out of bound it got destroyed.
The assets that I use :
verionjulian.itch.io/trees-pack
free-game-assets.itch.io/free-scrolling-city-backgrounds-pixel-art
www.gamedevmarket.net/asset/plane-game-complete-2d-game-asset-pack
#godottutorial #tutorial #godot #flappybird #unity #gamedevelopment #unrealengine
Просмотров: 50

Видео

Godot 4.3 Tutorial , Flabby Plane Part 2, Creating Player Character using Character Body 2D
Просмотров 512 месяца назад
In this part we will create our character or plane if you like. The assets that I use : verionjulian.itch.io/trees-pack free-game-assets.itch.io/free-scrolling-city-backgrounds-pixel-art www.gamedevmarket.net/asset/plane-game-complete-2d-game-asset-pack #godottutorial #tutorial #godot #flappybird #unity #gamedevelopment #unrealengine #roblox
Godot 4.3 Tutorial , Flabby Plane Part 1, Editor Introduction
Просмотров 382 месяца назад
In this part we will learn and play a little bit with the godot editor. The assets that I use : verionjulian.itch.io/trees-pack free-game-assets.itch.io/free-scrolling-city-backgrounds-pixel-art www.gamedevmarket.net/asset/plane-game-complete-2d-game-asset-pack #godottutorial #tutorial #godot #flappybird #unity #gamedevelopment #unrealengine #roblox
Godot 4.x Beginner Tutorial, How to make flappy bird clone using Godot Game Engine
Просмотров 1282 месяца назад
In the near future I will drop tutorial on how to make flappy bird like game. This tutorial is for beginner and everyone who wants to learn the basic of godot. #gamedev #flappybird #godot #unity #unrealengine #tutorial
How To Change Font Style in Label node on Godot 4.x.
Просмотров 5845 месяцев назад
Sometimes we need to beautify our game font, in godot we can change font style easily by drag and drop the ttf file. Assets that being used : - www.dafont.com/minecraft.font - crusenho.itch.io/complete-ui-essential-pack #godot #gamedeveloper #gamedevelopment #unity
How To Mask Using Control Node In Godot 4 (2024)
Просмотров 4436 месяцев назад
How to mask in Godot 4 (2024). There are several technique that you can do to mask in Godot, one of them is using control node to clip its children.
VSDC Video Editor Tutorial Green Screen, How to Remove Green Screen From a Video
Просмотров 5702 года назад
VSDC Video Editor Green Screen Removal. VSDC Video Editor is a free open software that is really good . Please leave a like, comment and subscribe to this channel.
Ryuki transition
Просмотров 1202 года назад
It must be hurt
How to Lower Audio Volume of A Video - VSDC Tutorial - How to Lower / Mute / Increase Audio
Просмотров 7452 года назад
Tutorial of How to Lower Audio Volume of A Video - VSDC Tutorial - How to Lower / Mute / Increase Audio Without using effects. The video is from Kimetsu No Yaiba Trailer for season 2. VSDC Video Editor is a free open software that is really good .
How to Make Spectrum From Audio / Music - VSDC Video Editor Tutorial
Просмотров 6253 года назад
How to Make Spectrum From Audio / Music - VSDC Video Editor Tutorial
How to do a Zoom in a Video - VSDC Video Editor Tutorial
Просмотров 1,1 тыс.3 года назад
How to do a Zoom in a Video - VSDC Video Editor Tutorial
How to Blur an Area of a Video - VSDC Video Editor Tutorial - How to Add Blur Effect
Просмотров 7 тыс.3 года назад
How to Blur an Area of a Video - VSDC Video Editor Tutorial - How to Add Blur Effect
Adding Transition Effects on Videos - VSDC Video Editor Tutorial
Просмотров 8 тыс.3 года назад
Adding Transition Effects on Videos - VSDC Video Editor Tutorial
Adding Text And Subtitle to a Video - VSDC Video Editor Tutorial
Просмотров 11 тыс.3 года назад
Adding Text And Subtitle to a Video - VSDC Video Editor Tutorial
Adding Video And Combining 2 Videos - VSDC Tutorial
Просмотров 28 тыс.5 лет назад
Adding Video And Combining 2 Videos - VSDC Tutorial
[Trailer]Binusian Life ! 1 Minute Promotion Trailer !
Просмотров 295 лет назад
[Trailer]Binusian Life ! 1 Minute Promotion Trailer !

Комментарии

  • @Senzu348
    @Senzu348 2 месяца назад

    Nice short tutorial!

    • @RyrExe
      @RyrExe Месяц назад

      Glad you liked it!

  • @kosmosskuggan9827
    @kosmosskuggan9827 3 месяца назад

    this voice is cracking me up

  • @darkhunter777
    @darkhunter777 4 месяца назад

    But text in Button don t show 😁

    • @RyrExe
      @RyrExe 4 месяца назад

      Yes, you have to use theme to adjust embedded text label in button, I don't recommend to use embedded label in the button because of this lack of flexibility (have to use theme to be proper).

    • @darkhunter777
      @darkhunter777 4 месяца назад

      @@RyrExe Да я уже разобрался, там все можно сделать через Theme Overrides.

  • @marvinsilverman4394
    @marvinsilverman4394 5 месяцев назад

    and why dont put the another video in the same layer?? one adjacent to another???

  • @RyrExe
    @RyrExe 5 месяцев назад

    What programming jargon do you want to be explained ?

  • @Senzu348
    @Senzu348 5 месяцев назад

    I think you should explain it further why a function needed that value

    • @RyrExe
      @RyrExe 5 месяцев назад

      Good Idea !

  • @RyrExe
    @RyrExe 5 месяцев назад

    Have you avoided this mistake ?

  • @nelsonperrin5800
    @nelsonperrin5800 6 месяцев назад

    You forgot the "!" in the "_on_body_entered" method alternative. Also, the "_on_body_entered" method may simply call "_on_area_entered" using "body" as "area".

    • @RyrExe
      @RyrExe 5 месяцев назад

      My bad lol, forgot to add the negation. I keep them separated because they are 2 different types of node/class after all(if we need to do something specific), and it is not good to call a function or method that is specifically assigned to respond to a signal manually.

    • @nelsonperrin5800
      @nelsonperrin5800 5 месяцев назад

      @@RyrExe Yeah, it would be better to create a common base class and use a common method to handle this behavior, but since you're not using any type contraint in those python method and since those methods are spacialy close to each other I would tend to do this kind of hack (or create a 3rd method). But yeah, if your planning to heavily modify on of those method in the near future it might not be the brightess idead to merge them.

  • @arjix8738
    @arjix8738 6 месяцев назад

    What are you even talking about in that compiler bit? That would only be an issue for interpreted languages, but even then, the interpreter would already read the entire function. The lexing/parsing happens before any code is executed, thats how the compiler finds syntax errors...

    • @arjix8738
      @arjix8738 6 месяцев назад

      The reason we use early returns, is to keep the code tidy and less prone to human errors The compiler doesn't benefit that much unless you are using a crappy language

    • @RyrExe
      @RyrExe 6 месяцев назад

      @@arjix8738 Indeed ! One of the benefit using return early pattern is to make the code more tidy

  • @RyrExe
    @RyrExe 6 месяцев назад

    Have you avoided this mistake ?

  • @HarshDeep61034
    @HarshDeep61034 6 месяцев назад

    It's great for game dev community as godot is open source!!

    • @RyrExe
      @RyrExe 6 месяцев назад

      Gonna be next blender !

    • @HarshDeep61034
      @HarshDeep61034 6 месяцев назад

      @@RyrExe indeed ❤️

  • @RyrExe
    @RyrExe 6 месяцев назад

    Have you avoided this mistake ?

  • @RyrExe
    @RyrExe 6 месяцев назад

    Have you avoid this mistake ?

  • @RyrExe
    @RyrExe 6 месяцев назад

    What tutorial do you guys want to see next?

  • @RyrExe
    @RyrExe 6 месяцев назад

    So what's your thought about Brackeys' return ?

  • @ilhanilhanDev
    @ilhanilhanDev 6 месяцев назад

    Safe for future

    • @RyrExe
      @RyrExe 6 месяцев назад

      Happy to help

  • @elsenyacub
    @elsenyacub 6 месяцев назад

    Thank you for the guide sir!

    • @RyrExe
      @RyrExe 6 месяцев назад

      Happy to help

  • @JamesGalaxy41
    @JamesGalaxy41 9 месяцев назад

    thank you

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

    I made it to invert mask. That is where you need buy Pro Version in order to export with blur.

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

    nice thumbnail..

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

    Thank you so much. It helped me a lot

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

    The thumbnail 💀

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

    thanks so so so much for the awesome video

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

    If you're looking for program for face blur, this is not it, you must pay for pro version in order to have that option. There is not way around it. No matter now many "points" you have, must pay for it.

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

    Not useful , i need 2 video run together side by side

    • @Stereo...
      @Stereo... 5 месяцев назад

      Bro Drag Them

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

    btw there is some videos that are not able to remove the background...

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

    Hey, sorry to trouble with this but do you know how to select everything to the right of the cursor? Trying to add a clip in the middle but need to be able to move everything to the right of it, I have clips + pics + audio so it's very jumbled and it's overall a very long project (nearly an hour)

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

    Thanks

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

    Tysm bro

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

    Hi. how do you make the text a paragraph because when I paste my text, it turns into a linear infinite one line text box? Thanks

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

    Need more bro

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

      Will do in the future, currently busy with my work, please like and subscribe to my channel, thanks...

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

      I did

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

    What program you use to screeen recor?

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

      Standard OBS does the job, please like and subscribe to my channel, thank you.

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

    Wow very time-consuming in a way. Much appreciated thank u

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

    Is there a way to group the two videos together into one long clip and then treat them as one so you can speed them up and slow them down.

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

      You can slow down video by changing "Speed %" field on properties window when u click and select video. You can change individual video, it is better than grouping them because you can customize each video

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

      @@RyrExe he's asking if he can group the video as one, he's not asking for your opinion about individual videos lmao

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

    Thanks dude

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

      Happy to help, give a like and subscribe to my channel, thanks

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

    Keep the good work bro 🐐🔥

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

      Thanks 💯, please give a like and subscribe

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

    Thank you.

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

      You're welcome! Please leave a like and subscribe to my channel, thanks

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

    LMAOO THE SUBTITLES

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

    lmao

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

    there is no paragraph

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

    dosnt work

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

    Thank you for this useful video ^-^

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

      You're welcome 😊

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

    If you want to add more attraction to your video, better you add some vocal to explain.

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

      Thanks, will add in near future, please subs to my channel.

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

    Bro thanks to you i made my own edit!!!!!!!!!!!!!

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

      Where?

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

      I also made an amv using VSDC on my latest vid (no self promote)

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

    Thanks and subbed.

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

      Thank you, I hope the video helps you

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

    kudos for the ff tactics advance music

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

    THANKS but please how to remove background vidéo without green screen.

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

      You're welcome, I don't think it is possible for the free version. U can use masking to remove background but it is very tedious, u basically have to tweak the mask frame by frame to hide the background. Unfortunately, free version limit how much pointer u can use in masking .

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

    reply me

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

    ruclips.net/video/EDPwi89cOvw/видео.html

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

    hi brother

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

      Hello