Тёмный
chris biscardi
chris biscardi
chris biscardi
Подписаться
Rust, Wasm, Game Development, and cutting edge tech releases.
GPU particle effects with Bevy Hanabi
13:00
3 месяца назад
Dev tools can be more than a grab bag
11:00
3 месяца назад
This week in Bevy: color, gizmos, and 7drl
23:32
4 месяца назад
Use Blender as a Bevy Editor
12:03
5 месяцев назад
embassy is now on crates.io
3:15
5 месяцев назад
2024
14:04
6 месяцев назад
Top 10 Games from Bevy Jam 4
28:20
6 месяцев назад
How hard is all 50 stars?
28:25
6 месяцев назад
Rust Release Train 1.75
10:16
6 месяцев назад
Комментарии
@chrisbiscardi
@chrisbiscardi 20 часов назад
Observers, hooks, and event handling aren't that different. All of them effectively process event data. EventReader systems can be better for parallelized event processing, but have to wait to read events until the time at which the system runs in the frame to pull events in, which can lead to processing events next frame instead of this frame depending on ordering. As a contrast, Observers and hooks will process an event "on-demand" much sooner. So if you want to guarantee a low-traffic event is processed this frame Observers work for that, or if you want to uphold an invariant (like adding an entity to an index) Hooks run even before Observers and are lighter-weight since they don't respond to user-created events (only component add, insert, remove). Observers are new as of a week or two ago in the 0.14 release, so you'll see me using them and hooks a bit more because of that as well.
@mrmaniac9905
@mrmaniac9905 20 часов назад
I have no idea why you decided to use the observer pattern instead of events with event readers/writers, bit silly if you ask me... none the less, wonderful video, thank you for putting up some bevy content !!!!!
@mrmaniac9905
@mrmaniac9905 20 часов назад
granted I'm super new with bevy and this could be the proper way todo it. Just seems like you were trying to conform it to the trigger/observer stuff when it would've been a better match to an event with a listener
@ic6406
@ic6406 День назад
I thought you gonna show how to debug shader in debugger emulator. I know how to debug compute shader but can't see a way to debug a fragment one
@boohoo5419
@boohoo5419 2 дня назад
omg you are such a fraud/script kiddie. you have no business teaching others about DBs, given how clueless you are as a dev!
@sunfos
@sunfos 2 дня назад
Sorry but I had to start laughing so hard at around 8:00. Imagine someone who is not into computer science trying to decipher what you are saying. And crate rayon is just the cherry on top.
@Astamor
@Astamor 2 дня назад
On the one hand it's so cool to see this engine getting all the fancy 3d features and fireworks like god rays, volumetric fog but on the other hand you have 2d which again was abandoned and doesn't even have the most basic 2d lighting, not to mention some normal maps or something :/
@chrisbiscardi
@chrisbiscardi 2 дня назад
fwiw, 2d isn't "abandoned" and there are people thinking about and working on it, including some interesting 2d-specific transform and such features. New feature development is often driven by contributor interest and time, and 3d features tend to have more people interested in upstreaming those contributions at the moment (also pcwalton, which is incredibly productive and responsible for a lot of the "volumetric fog" type features this cycle, is working on 3d rendering features, which means an uptick in 3d compared to other areas) for 2d lighting there are a few different crates that can be used depending on what approach you're looking for. * github.com/jgayfer/bevy_light_2d/ * github.com/443eb9/bevy_incandescent * github.com/goto64/bevy_2d_screen_space_lightmaps * github.com/zaycev/bevy-magic-light-2d (Jarl uses bevy-magic-light-2d -- www.youtube.com/@Jarl-Game-com )
@spacexnix
@spacexnix 4 дня назад
Dude, why are you just making transitions between the code. I'm new to RUST and how should I understand why I don't have Gradient::new defined. Why haven't you ever shown me where the hell it's imported from? if you show it, then show the full code and import dependencies.
@JoeTaber
@JoeTaber 5 дней назад
Are you sure that cube isn't 1m wide?
@chrisbiscardi
@chrisbiscardi 5 дней назад
the author left a comment with the correction. it is 1m, not 1km.
@peterhayman
@peterhayman 5 дней назад
a week with bevy in the world is a good week
@PilouTheWolf
@PilouTheWolf 5 дней назад
I had to hunt that video down. I'm subscribed but it didn't show up in my subscription tab for some reason.
@Lemonzy
@Lemonzy 5 дней назад
Thank you for showcasing my ongoing project and all the efforts you put in creating those videos. You're even looking for info in threads, and that must take a lot of time! Small mistake in the video: the red cube is one meter on a side, not one kilometer.
@chrisbiscardi
@chrisbiscardi 5 дней назад
thanks for the correction! and glad you're enjoying the videos.
@mattlennon3
@mattlennon3 5 дней назад
Awesome roundup! Thanks for making these videos :) I don't see a link on your website to the WIP water simulation, is it publicly available? Thanks!
@chrisbiscardi
@chrisbiscardi 5 дней назад
if you cmd+f for "WIP water simulation" on the site you will find it. The code unfortunately is not released yet, so the link is only to the bevy discord thread which has a few gifs and some discussion, but no code. discord.com/channels/691052431525675048/692648638823923732/1258445516300095548
@Mint25pop
@Mint25pop 5 дней назад
This might just be the strongest bevy week ever!
@linovermac
@linovermac 5 дней назад
please links Link 05:14 Huge Voxel Planets - 05:57 Punch to open
@chrisbiscardi
@chrisbiscardi 5 дней назад
All of the links are on the website, which is linked to from the description. All of the headings match the chapters in the video.
@linovermac
@linovermac 2 дня назад
@@chrisbiscardi Thank you :)
@Athomield3D
@Athomield3D 5 дней назад
Link for 5:14 ?
@inodedentry8887
@inodedentry8887 5 дней назад
You didn't mention iyes_perf_ui. It now has a Bar widget and support for custom UI widgets.
@victorrogers1946
@victorrogers1946 5 дней назад
What is up with the black dots jumping around on the water at 2:44?
@RootsterAnon
@RootsterAnon 5 дней назад
I think that is from post processing shader, not something that they actually wanted to show.
@chrisbiscardi
@chrisbiscardi 5 дней назад
not sure. the showcase is the first time bevy_water was working with the reflections, etc so I'd assume there's still a few issues to work out with how the reflections interact with the custom material.
@n3y
@n3y 5 дней назад
I'm glad someone is actually implementing the second order dynamics for bevy like this, I was dreading having to go through that myself
@Mempler
@Mempler 7 дней назад
Substates are literally what i wanted ever since i played with Bevy. Absolutely horrible the old system!
@juxtar
@juxtar 7 дней назад
Hey could you please share the github repository for the Decibel Level visualiser, that looks cool.
@chrisbiscardi
@chrisbiscardi 7 дней назад
I actually had never uploaded it, but just went and found the directory today github.com/rust-adventure/yt-ratatui-audio-viz/tree/main There's some extra files and whatnot since I was starting to move towards using wgpu iirc, but the core program seen in the video still works. use cargo run.
@TimDrogin
@TimDrogin 9 дней назад
Nanite team also made a custom rasteriser- basically, gpu rasteriser suffers on small triangles, so they wrote a software rasteriser that works on triangles that are smaller than 25*25 pixels or so. It whould be such a cherry on top
@stevenlandow7372
@stevenlandow7372 9 дней назад
With meshlets, will be we able to do heightmap/displacement maps with a ton of detail?
@chrisbiscardi
@chrisbiscardi 7 дней назад
my understanding is that meshlets as a feature are based around preprocessing large assets. So you can have a really large detailed mesh and process it instead of using displacement maps.
@gabrielkwong1878
@gabrielkwong1878 9 дней назад
Always appreciate these round up summary videos, keep it up and thank you!
@Endelin
@Endelin 9 дней назад
Nice, can't wait to disable motion blur.
@ThePC007
@ThePC007 7 дней назад
Why? What we’re seeing here is per-object motion blur, not the annoying type of motion blur that is affected by camera movement. I think it actually looks really good.
@flwi
@flwi 9 дней назад
Thanks for the overview! Looks like very interesting stuff just landed.
@CjqNslXUcM
@CjqNslXUcM 9 дней назад
There's no random sample for Quat. anyone know a fast uniform one?
@chrisbiscardi
@chrisbiscardi 9 дней назад
@@CjqNslXUcM are you looking for the FromRng implementation on Quat? docs.rs/bevy/latest/bevy/math/struct.Quat.html#impl-FromRng-for-Quat
@CjqNslXUcM
@CjqNslXUcM 9 дней назад
@@chrisbiscardi yes, where is the implementation?
@chrisbiscardi
@chrisbiscardi 9 дней назад
I don't understand the question, I've already linked you to it.
@CjqNslXUcM
@CjqNslXUcM 9 дней назад
@@chrisbiscardi You have, but when I click on source, the implementation for Distribution<Quat> is missing. I finally found it, it's generated by a macro in the glam crate, but it's not uniform. They need to remove the implementation before someone accidentally uses it.
@chrisbiscardi
@chrisbiscardi 9 дней назад
ah yeah, I see what you mean. Yes the Bevy implementation defers to glam for the actual implementation. There's some additional information in the PR that implemented it around needing to do some more testing: github.com/bevyengine/bevy/pull/12857 I asked in the bevy math channel in the discord if there was ever followup to check the uniformness. How did you determine it wasn't? Would you be open to posting how in the bevy_math channel in the discord?
@LuisCassih
@LuisCassih 9 дней назад
holy shiet, that was packed. Bevy is getting better and better.
@peterhayman
@peterhayman 9 дней назад
haha wow looks like you got this video out within an hour of the announcement, well done! 🎉
@chrisbiscardi
@chrisbiscardi 9 дней назад
after doing thisweekinbevy for the entire cycle, and helping out some with the release processes and candidate issues it was reasonably easy for me to figure out when the release was actually going to happen and record a video at the right time.
@icanonlysuffer
@icanonlysuffer 9 дней назад
YESSSS
@j1351209
@j1351209 9 дней назад
Does Bevy have the ability to replace unreal or Unity?
@chrisbiscardi
@chrisbiscardi 9 дней назад
it depends on your use case and requirements
@j1351209
@j1351209 9 дней назад
@@chrisbiscardi Intractive Digital Twin apps Developement
@Caellyan
@Caellyan 8 дней назад
For most basic games absolutely, if you don't mind writing them in code instead of UI/graphs. For advanced cases it depends on how much you depend on specific Unity/Unreal functionality. Bevy is very modular and you can add any missing features on top with very little overhead, but depending on which features you're adding it might end up being a lot of work. You can also use large chunks of bevy (ecs, color, ...) without using the whole engine suite if you're rolling your own engine from scratch.
@robertswain278
@robertswain278 9 дней назад
Really nice and quick summary of the release. Great video!
@jeremiamagongwa8980
@jeremiamagongwa8980 9 дней назад
I love Bevy
@hymm22
@hymm22 9 дней назад
FYI I think the audio working group decided to create a new audio solution to better fit into the ecs paradigm rather than using kira audio
@chrisbiscardi
@chrisbiscardi 9 дней назад
TIL! Thanks for the info. The audio working group channel confirms this is the case (current audio doc includes this comment as well hackmd.io/@solarliner/bevy-audio-v2 for anyone else interested)
@SolarLiner
@SolarLiner 8 дней назад
@@chrisbiscardi Hi! That is correct, we're switching to making a custom audio engine for various reasons (as listed in the above design docs you liked), hopefully it is the correct choice and means easier time implementing new audio features, better user-facing API, and more stable especially in WASM.
@chrisbiscardi
@chrisbiscardi 8 дней назад
@@SolarLiner looking forward to seeing audio take shape as this progresses!
@4115steve
@4115steve 9 дней назад
mega cool
@user-rg7ux5hn5t
@user-rg7ux5hn5t 9 дней назад
Still no Editor?
@RootsterAnon
@RootsterAnon 9 дней назад
There will be no editor until 1.0.0 version. Also, if you need editor then this is not for you. What I like the most about Bevy is that it gives me opportunity to make my own dev tooling that I need with eGUI. and having game + editor panels is nice dx.
@paulkupper194
@paulkupper194 9 дней назад
​@@RootsterAnonIt's the other way around actually. There will be no 1.0 without an editor. This release lays a lot of technical groundwork for the editor and more will follow (most notably a new Scene format and the Bevy Remote Protocol). Several people have started prototyping stuff for the editor. It just takes time for everything to come together.
@RootsterAnon
@RootsterAnon 9 дней назад
@@paulkupper194 I don't want them to focus on editor, I want them to progress with features and new scene format as you mentioned etc. Editor you can have in few different flavors if you want like custom one, blender, etc. lets wait for all of the features to be in presentable state then official editor can emerge if really needed. I would like API to be more stable so we can migrate easy from version to version, docs to be up to date with latest api changes and good examples. Editor can wait. :D
@francois199
@francois199 9 дней назад
@@RootsterAnon 1. You're very selfish, you're thinking about what you want not what Bevy needs, but for Bevy to be taken seriously, it needs an editor that you like it or not. 2. An editor written in Bevy is the perfect tool for dog fooding, just like Godot does.
@RootsterAnon
@RootsterAnon 8 дней назад
@@francois199 That is just reality of the situation we are in. You can't have editor without stable api. It's that simple.
@wtfisgoingon535
@wtfisgoingon535 9 дней назад
You don't need the arc/mutex here, just use a a classic struct/impl combo.
@thisisreallyme3130
@thisisreallyme3130 10 дней назад
Yes TY for this series. I’m really struggling with Rust for embedded (work) purposes, but it’s so cool to see that Rust is doing some great stuff for games (play). Cheers
@HideBuz
@HideBuz 11 дней назад
Man, I stumbled over this. This technique is awesome, allows one to edge host cheaply without paying for a database server. I am gonna note that down. Have there been any new developments? What do you think about technologies like libsql?
@EloquentGeekGames
@EloquentGeekGames 12 дней назад
Another great compilation! Thanks for the hard work ❤
@andoliu246
@andoliu246 12 дней назад
The happiest time of the week!
@user-xi6tu9lb5n
@user-xi6tu9lb5n 12 дней назад
I wonder if by binary sniffing we would find that the beginner code is the most concise.
@pvini07BR
@pvini07BR 12 дней назад
1:44 really nice seeing my game here. i never got any recognition for my projects, so i'm really thankful for showing it here. btw, mijocraft is a temporary name because i haven't thought of a better name yet, lol.
@Henryy06
@Henryy06 12 дней назад
MIJOCRAFT MENCIONADO‼️‼️✔️☠️🗣🤙🤙
@chrisbiscardi
@chrisbiscardi 12 дней назад
having even a temporary name is very helpful when making these videos, it gives something to "attach" explanations and future updates to.
@TimTeatro
@TimTeatro 12 дней назад
Thanks so much for making this series each week. I'm a computational physics/(control systems) engineering guy (so lots of C++ and a Python) and decided to learn Rust. Unlike a sane person, I decided my first Rust project should be a port of some of my visualisation software that runs too slowly in Python+matplotlib+Cairo. It's been a steep learning curve, but this series has helped me fall in love with Bevy and motivated me to stay on that learning curve. Mathematics in my head is very visual and geometric (even abstract algebra). I feel like a world is opening up for me to let others view the world as I see it in my head, and that is truly exciting for me.
@theninjascientist689
@theninjascientist689 12 дней назад
Keep at it! Once you get comfortable with Rust writing it is an absolute joy!
@chrisbiscardi
@chrisbiscardi 12 дней назад
I'm very happy to have played some small part in your journey and comments like this make the work that goes into these videos worth it for me.
@thisisreallyme3130
@thisisreallyme3130 10 дней назад
@@theninjascientist689I want to be at that place where Rust is a joy. It’s hard if you come from Python “and” don’t have a C/C++ background. The concepts click, but all the fancy annotations and rules (it’s like learning a language that has a different alphabet). Still, I return to trying when between deadlines.
@auauauauauauauau
@auauauauauauauau 12 дней назад
🐦💜
@peterhayman
@peterhayman 12 дней назад
yaaay diisweekiiinbevyyy 🎉
@CuriousSpy
@CuriousSpy 12 дней назад
3:48 someone moved from godot to bevy. I panicked and moved from bevy to godot xD Think i wait untill stable 1.0 release
@g-3894
@g-3894 17 дней назад
blown away that you can set an env file with a path resolved by a password manager. thank you
@faysoufox
@faysoufox 17 дней назад
Very nice video, thank you
@claudehahni2662
@claudehahni2662 18 дней назад
I was wondering what you thought was 'magic' in Go? Imho, Go is one of the most straight forward un-magical languages.
@chrisbiscardi
@chrisbiscardi 18 дней назад
things like nil existing, type assertions and erroring handling, panics occurring from those things and using panics as control flow, etc. defer bugs like when closing files require additional external documentation to use correctly (ex: go.dev/blog/defer-panic-and-recover )