Bevy: A quick introduction

Поделиться
HTML-код
  • Опубликовано: 25 авг 2024

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

  • @Shack263
    @Shack263 Месяц назад +89

    Haha I could see the NoBoilerPlate inspiration right away. Nice video!

    • @NoBoilerplate
      @NoBoilerplate 13 дней назад +9

      We've both come to prom wearing the same dress 😂
      (really great video isaac!)

  • @JustDeeevin
    @JustDeeevin 6 дней назад +1

    Love the video! Doing things like no boilerplate was a good call. You should look into getting a noise suppression filter on your audio - this can be done in post-processing if needed. The cuts in and out of your voiceover are very obvious and a little distracting.

  • @robertwaremusic
    @robertwaremusic Месяц назад +6

    I'm glad I found your channel! I've been working in Godot using C#, but I've found that I much prefer Rust over C#, and Bevy seemed like the purist Rust way to go as opposed to Godot's Rust Extension. Learning Rust and Bevy so far has been a TON of reading, so well-made videos like this definitely help ease the journey. Thanks again for the hard work!

  • @parkourbee
    @parkourbee 12 дней назад +1

    Thanks so much for making this. I love Rust, and NoBoilerplate is the reason I gave it a shot. I'm currently trying to decide which game framework to start with (I've only ever done web and cli) and I was pretty sure Godot was the move but definitely going to try out Bevy for a few mini projects.

  • @laundmo
    @laundmo Месяц назад +18

    First of, i like the video quite a bit.
    note: "System don't have any State" is not quite true, with Local a system can have state.
    "input hooks" as hooks are a bevy concept, this may be confusing
    "running under the Update system, the Update system will run every frame" i believe you misspoke here and meant "Schedule"
    feedback on video: Theres quite a lot of noise with your mic, and sometimes words sound cut off. could your noise reduction be cutting of starts/ends of words?
    I would personally enjoy some custom style in your presentation, maybe just changing font and colors, to make it seem like you at least put in some thought beyond copying the process Tris is using. Tho i don't think he'll care.

    • @icorbrey
      @icorbrey  Месяц назад +5

      Thanks for your feedback! I figured it'd be less confusing for beginners to just generalize systems as "stateless". For your second two notes, I agree, they are a bit confusing and I could've worded it better.
      As for the video style, I mainly wanted to get something out the door so I could get over my own mental blocks. It's the default style for the Advanced Slides plugin in Obsidian. I'm working on an animation system for future videos right now that I hope will suit my needs, especially with code presentation.
      I'm very much new to both audio and video editing lol, I recorded quite a few takes for the voiceover and kinda cut it together in Audacity. Any tips on that front?

    • @NoBoilerplate
      @NoBoilerplate 13 дней назад +3

      I'm relaxed in this topic, certain while you get started. As isaac said, it's the default style for Advanced Slides. Really, I should put work and make my own style.
      I think that the script and sound are way more important than visuals, the way I think about it is that a blind person should be able to listen to my videos and get out just as much as a sighted person (source code notwithstanding)

    • @icorbrey
      @icorbrey  13 дней назад

      @@NoBoilerplate Hey Tris! What did you think of the video? Any critiques?

  • @UjjwalSidhu
    @UjjwalSidhu 21 час назад

    O.O sheeesh that was great tut look for next :D

  • @redactedhoptional
    @redactedhoptional 28 дней назад +4

    Fun fact: if you know a query will only have 1 entity, you can use the single() (or single_mut()) method to get it without needing a for loop like in 5:10.

    • @icorbrey
      @icorbrey  28 дней назад +2

      You sure can! However since it's likely to fail if you have more than one matching entity (or no matching entities) I personally tend to use loops for most things unless I'm absolutely certain there will always and forever only be one of that thing.

  • @GoldenAdhesive
    @GoldenAdhesive Месяц назад +8

    for anyone reading the comments after getting stuck, the cargo.toml file is missing [] around the "dynamic_linking" in order to function.

    • @icorbrey
      @icorbrey  Месяц назад +3

      Thanks for the fix! I'll get that pushed later today 💕

  • @llr1950
    @llr1950 28 дней назад +1

    Nice vidéo ! Would love a longer video on the subject.

  • @taggosaurus
    @taggosaurus 28 дней назад +1

    4:10, Circle didn't appear until I added "use bevy::sprite::*;". `MaterialMesh2dBundle` wasn't in scope.

  • @PinikRahman
    @PinikRahman Месяц назад +1

    This is awesome.. I hope you continue with the series. One observation, I think the sound volume in this video was quite low

    • @icorbrey
      @icorbrey  Месяц назад +1

      Thanks for the tip, I'm still working out my mic so I appreciate it!

  • @msodev
    @msodev День назад

    Hi mate, super helpful vid. How do you make such cool presentations?

  • @BaronVonScrub
    @BaronVonScrub Месяц назад +1

    You have a good voice for this, I hope to see more from ya. :)

  • @c_ornato
    @c_ornato 29 дней назад +2

    Great video! I see this is your first popular one too, hope youtube works out for you!

    • @icorbrey
      @icorbrey  28 дней назад +1

      Thank you, me too!

  • @matthiasbrat515
    @matthiasbrat515 26 дней назад

    Like your touch at making these

  • @El-Burrito
    @El-Burrito Месяц назад +4

    Good stuff, nice intro vid

    • @icorbrey
      @icorbrey  Месяц назад +1

      Thanks! Hopefully I'll have the next one out soonish

  • @tim_arterbury
    @tim_arterbury 26 дней назад

    Great explanation!

  • @mintx1720
    @mintx1720 24 дня назад

    bavy~

  • @TenseiCho
    @TenseiCho 29 дней назад

    After I get the skeleton for my game done in pygame I plan to move over to Rust/Bevy. Hopefully GUI in the next update.

    • @icorbrey
      @icorbrey  28 дней назад

      One can hope, we'll see what the team can crank out

  • @solmateusbraga
    @solmateusbraga 26 дней назад +2

    Unfortunately the only thing keeping me away from Bevy is unavoidable. It's very early development, so it's too unstable. Documentation / tutorials tend to break every three months and be scattered around. Looking forward to the 1.0 in some years, though! That'd make the engine way more reliable. Of course, if you have the time you can easily follow the migration information they put out to update your project, but relearning something makes my brain hurt.
    This is a great thing, however, as 0.x allows a future 1.0 to be better and better!

  • @BenjaminWheeler0510
    @BenjaminWheeler0510 26 дней назад

    1:01 I think -bin is the default, right?

  • @moonskined
    @moonskined 26 дней назад +1

    What bevy needs to lift off for most devs is UI...

    • @icorbrey
      @icorbrey  25 дней назад +1

      Definitely - there's a few good stand-ins in the meantime however, notably bevy_editor_pls (github.com/jakobhellermann/bevy_editor_pls) and space_editor (github.com/rewin123/space_editor). I'll probably make a video exploring Bevy UI stuff sometime soonish

  • @kyledunbar9255
    @kyledunbar9255 Месяц назад +2

    I don't mean to be a hater, and NBP is one of my favourite channels too, but this video seems devoid of your own personality. Atleast choose a different font

    • @icorbrey
      @icorbrey  28 дней назад +3

      Totally fair, and I agree. I mainly did this because it was easy to replicate and I wanted to focus more on figuring out the content rather than the presentation. I'm working on a new animation framework for future videos

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

    bevy is great until it isn't

    • @diadetediotedio6918
      @diadetediotedio6918 Месяц назад +3

      wdymbt?

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

      @@diadetediotedio6918 well the usual stuff. you need a thing in Bevy but it is isn't there. you shrug it off and keep developing but suddenly you need a second feature that isn't yet delivered. and eventually you go to another engine that isn't written with rust - a capital crime, I know - but already has everything you need for development. Bevy is not bad at all, it is just too young to be considered worth learning