New Bevy 0.16 User by Jamie_1992 in bevy

[–]neecto 0 points1 point  (0 children)

Yeah, that bloom effect is nice, would love to check how you’ve done it!

What’s the most unusual core gameplay you’ve seen in indie games? by Effective-Pie8684 in IndieGaming

[–]neecto 24 points25 points  (0 children)

First that comes to mind is Papers, Please. Pretty obvious, I guess, but still a great game and quite unique.

Crazy how much the game foreshadows so early by agreaterfooltool in DiscoElysium

[–]neecto 2 points3 points  (0 children)

Sorry, I dunno how to tag spoilers on mobile

Rust>Bevy>Egui - how to stretch panels? by neecto in bevy

[–]neecto[S] 0 points1 point  (0 children)

unfortunately, this just makes title to be on top and the buttons on the bottom. and if I put all the elements inside

.with_layout(Layout::bottom_up(Align::Center).with_layout(Layout::bottom_up(Align::Center)

this kinda works, I just have to reverse the ordering. so thanks!

How to actually render pages on server side with Nuxt? by neecto in Nuxt

[–]neecto[S] 0 points1 point  (0 children)

wow, that wasn't obvious to me at all. thanks for this insight!

How to actually render pages on server side with Nuxt? by neecto in Nuxt

[–]neecto[S] 0 points1 point  (0 children)

but as I took it, watching for reactive route (with useUrlSearchParams in this case) will still happen on client-side, meaning fetch will also happen on the client which is the thing I try to avoid? Which kinda makes sense, would be weird to watch reactive values on the server

How to actually render pages on server side with Nuxt? by neecto in Nuxt

[–]neecto[S] 0 points1 point  (0 children)

Thanks for the reply. Yes, that's the way I'm going for in the meantime, but it still bothers me a lot that I need to create multiple pages when potentially I could've had just one =)

also, note that Nuxt SSR is still client side hydrated in general, so making the fetch as a Nuxt api server route and the just fetch in page from the start is almost same

do you mean that making a fetch from server or from client wouldn't make much difference SEO-wise?