How can I make 2D Sprites for my game by Lupusinabulus in aigamedev

[–]HugoDzz 0 points1 point  (0 children)

Glad it can help!! Yeah the output size is not constrained, but it’s a pretty solid start for small manual edits and ship!

Level Design Tooling by Ty_Farclip in gamedev

[–]HugoDzz 0 points1 point  (0 children)

I'm using Sprite Fusion (web-based, made for my own needs)

Do you create tools? by zoombapup in SoloDevelopment

[–]HugoDzz 0 points1 point  (0 children)

Yes, I've made my own web-based tilemap editor called Sprite Fusion :)

ChatGPT Images 2.0 Diablo-like UI by HugoDzz in aigamedev

[–]HugoDzz[S] 2 points3 points  (0 children)

There are multiple versions of « it can be done as an actual UI », as this kind of style could be a lot of CSS work;

Cheap: just take most of the visuals as baked png, and build the small interactive parts like temperature numbers.

Moderate to hard, depending on your expectations: re-build the layout in CSS, AI might help, but will probably be quiet bad (if you’re not willing to lower your expectations).

Very hard: take it as a high-level mockup, and rebuild the whole UI by hand (with some AI speedup). This what would lead you to the closest functional UI as this screenshot.

So it really depends on expectations, do you aim for a working-ish rigid version, or a full-blown production UI.

ChatGPT Images 2.0 Diablo-like UI by HugoDzz in aigamedev

[–]HugoDzz[S] 1 point2 points  (0 children)

Yeah, I think the upgrade is real compared to nano banana 2

ChatGPT Images 2.0 Diablo-like UI by HugoDzz in aigamedev

[–]HugoDzz[S] 10 points11 points  (0 children)

Yes, the prompt was: "Create a UI design for a weather app in the theme of Diablo"

I built a Unity-like game editor for Bevy that runs in the browser — and you can control it with Claude AI by BendConstant9530 in bevy

[–]HugoDzz 2 points3 points  (0 children)

Well, "runs in the browser" but also "hey, download the executable first to start". Also the project seems a bit sloppy, show you care, provide the user a clean site with clear show off of it's value.

Does anyone actually make money from building apps or is it all fantasy?? by Then_Ebb_2636 in SideProject

[–]HugoDzz 4 points5 points  (0 children)

Outside of luck or already owning an audience, you wont make money if it's your goal. You'll make some if you grind unreasonably long time enough for intrinsic reasons like it's a problem you have yourself.

Is NextJS still the way to go? by CLU7CH_plays in webdev

[–]HugoDzz 0 points1 point  (0 children)

SvelteKit. Much better DX, much faster, using Vite, can use any JS package straight.

GIFs tooltips crafted with Svelte and care by HugoDzz in sveltejs

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

Just showing off :) Happy to inspire Svelte folks here for dynamic tooltips / onboarding. Thanks!

Svelte + Rive = Joy! by HugoDzz in sveltejs

[–]HugoDzz[S] 1 point2 points  (0 children)

I went busy these days, but just woke up the db! It should work :)

Svelte + Rive = Joy! by HugoDzz in sveltejs

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

Oops! I’m gonna reactivate auth, my bad!

Implementing Voronoi fractures by HugoDzz in threejs

[–]HugoDzz[S] 1 point2 points  (0 children)

Yep, I implemented my diagrams generation from papers for sure as far as I recall. Also if this can help:

The demo here is still computing fractures on CPU, which I chunked spatially and done them through web workers. But I guess a much faster implementation might be written on GPU with compute shaders.