@badlogic@mastodon.gamedev.place avatar

badlogic

@badlogic@mastodon.gamedev.place

libGDX, Beginning Android Games, RoboVM, Spine. Member of the council of Warios.

This profile is from a federated server and may be incomplete. Browse more on the original instance.

badlogic, to random
@badlogic@mastodon.gamedev.place avatar
accidentlyAnton, to austria
@accidentlyAnton@mastodon.gamedev.place avatar

What's the latest status on ID Austria? I keep seeing that it doesn't work most of the time. I'm still on Handysignatur and that works perfectly fine. Some services push me into "upgrading". Should I delay switching to it as long as possible?

badlogic,
@badlogic@mastodon.gamedev.place avatar

@accidentlyAnton honestly no idea. Had to upgrade. Works. Most of the time.

shtrom, to random
@shtrom@piaille.fr avatar

I've been using #ThreadReaderApp on Xitter to make threads into single pages that I can import into @wallabag (also doubles as an ElonWall bypasser as replies are no longer reachable to unlogged plebes).

I just discovered the Mastodon version, @mastoreaderio. Thanks @badlogic !

It has some JS-loading logic, so doesn't work with the backend-only mode of #Wallabag, but it works fine with the #wallabagger browser extension pushing the rendered page.

It does needs a little #siteConfig magic https://github.com/fivefilters/ftr-site-config/pull/1370. It would be handy to have some HTML5 semantics to find content and author more easily.

But all in all, the basic functionality is here!

badlogic,
@badlogic@mastodon.gamedev.place avatar

@shtrom @wallabag @mastoreaderio neat! Happy it has some use.

godotengine, to godot
@godotengine@mastodon.gamedev.place avatar

Seemingly, people still need to see proof.

Can everyone drop their 3D Godot games in the replies please? 🎤⬇️

badlogic,
@badlogic@mastodon.gamedev.place avatar
badlogic, to random
@badlogic@mastodon.gamedev.place avatar

Interesting article one the production of Air Head, a short film (?) supposedly created with OpenAI's SORA. Lots of struggles and manual work. Like, roto-ing the AI generated balloon head and replacing it manually.

(Sorry for the post storm. Gotta get my high quality Mastodon post quota filled for the month. I'm done :)

https://www.fxguide.com/fxfeatured/actually-using-sora/

badlogic, to random
@badlogic@mastodon.gamedev.place avatar

People of gamedev.place, I have a question: have any of you used generative AI in game production? I.e. to generate (production) "art", power conversational skills of NPCs, etc.

I can see how GenAI could be useful for blocking out things. I have yet to see a system that can generate content that doesn't require more work to get production ready than it would take to create manually.

Stuff like Unity's Muse Animate, Scenario, or (FSM forbid) Kaedim confuse me.

(InnoGames uses Scenario iirc)

image/jpeg

video/mp4

badlogic,
@badlogic@mastodon.gamedev.place avatar

Liz Edwards over on the site that shall not be named is an excellent artist and also an excellent source for Kaedim roasts.

badlogic,
@badlogic@mastodon.gamedev.place avatar

@bartholin LOD == level of detail.

As a 3D object gets further away from the camera, it gets smaller on screen, e.g. only covers 3% of the screen.

In that case, it makes no sense to render it at full fidelity. So you use a simplified mesh. You won't notice the difference at that size.

You ship a model at various such "resolutions". Each is one level of detail. You select the level of detail based on the distance to the camera. Helps improve performance, as you do less computations.

badlogic,
@badlogic@mastodon.gamedev.place avatar

@bartholin in the screenshot above, you see the LODs going from 95k "polys" to 75k "polys" to 55k "polys".

That's ... a silly step size. Usually, it's more like an order of magnitude reduction per LOD level. This indicates that Kadeim, the company offering AI generated 3D models, has no idea what they are doing (or preys on customers who are not knowledgable)

badlogic,
@badlogic@mastodon.gamedev.place avatar

@bartholin here's a visual example of what LOD levels usually look like.

badlogic, to random
@badlogic@mastodon.gamedev.place avatar

With Spine 4.2 done and released, I dorked off yesterday and built a Spine runtime for Android. It's a plain old Android View, using the Canvas API for rendering.

I'm lazy, so I went straight with the spine-libgdx runtime as the base. That's written in Java. All of it. And yet, this little thing screams (especially compared to the competition in the mobile app animations space, which is written in C++)

The renderer is 200 LOC, batches and doesn't generate any garbage that'd trigger stuttering.

image/jpeg
image/jpeg
image/jpeg

badlogic, (edited )
@badlogic@mastodon.gamedev.place avatar

ART, the VM running your Java/Kotlin code, has come a long way. Those little terrible loops scaling uvs and building up the colors "array" don't really make a dent in the frame time. Which is nice, cause they are very icky.

Sadly the Android Canvas API requires me to submit vertices in an unpacked way. Skia also does a copy natively. Still fast and efficient enough, easy to maintain, with great compatibility

With the PoC out of the way it shouldn't take long to get this into a shipable state.

badlogic, to random
@badlogic@mastodon.gamedev.place avatar

A few corps asked me to do a workshop with them on machine learning/large language models.

I put together a simple, extremely applied crash course on the basics of machine learning. All the materials are CC-BY-NC licensed. You'll need basic programming skills, but no previous ML experience or heavy duty math skills.

You'll learn what all the fuzz is about and how to build simple systems yourself. You only need a browser (can also run locally via Jupyter).

https://github.com/badlogic/genai-workshop/tree/main

badlogic,
@badlogic@mastodon.gamedev.place avatar

Happy to receive feedback/corrections.

badlogic, to random
@badlogic@mastodon.gamedev.place avatar

And another great read. This is a none trivial subject. The author mamaged to walk the reader through all abstraction levels beautifully imo.

Didn't know NVIDIA's Volta arch works as described.

https://www.collabora.com/news-and-blog/blog/2024/04/25/re-converging-control-flow-on-nvidia-gpus/

badlogic, to random
@badlogic@mastodon.gamedev.place avatar
badlogic,
@badlogic@mastodon.gamedev.place avatar

@fuchsiii Chucklefish iirc. I think exploring new tools is super valuable, even if you return to where you came from. Usually, you'll have a new perspective on your old state of affairs.

Console access for anything not sanctioned by the manufacturers has always been pain. See Godot,

badlogic,
@badlogic@mastodon.gamedev.place avatar

@Robin_Van_Ee good observation!

sinbad, to random
@sinbad@mastodon.gamedev.place avatar

F**ks sake they changed something pretty fundamental between UE 5.4 Preview and UE 5.4 Final - the ability to have multiple objects in an asset file, which SUDS relies on - the dialogue and string table are in the same asset; now the string table is gone.

I was worried they might do this because they started hiding them in 5.3 (not a problem) so I tested 5.4 Preview but everything was fine. Now it's completely broken in 5.4 Final, every single dialogue line is <MISSING STRING TABLE ENTRY> 😠

badlogic,
@badlogic@mastodon.gamedev.place avatar

@sinbad Sure hope you have more luck getting Epic to even recognize the issue. We had to break every user's project...

badlogic,
@badlogic@mastodon.gamedev.place avatar

@sinbad Hope!

badlogic, to random
@badlogic@mastodon.gamedev.place avatar

Every day I wait for the tram to get back home and have to look at this campaign poster by Austria's extrem right party FPÖ. It's AI generated.

Let's learn how to identify AI images using two recent posters by FPÖ.

1st image: Campaign poster for FPÖ's "Blue-Harry", supposedly a metal worker
2nd image: What Blue-Harry really looks like. He's a credit risk manager
3rd image: Poster for "Heimat Games", a Hitler-Youth inspired sujet for "homeland games"

Let's start with the 3rd image

image/png
image/png

badlogic,
@badlogic@mastodon.gamedev.place avatar

And finally, muscle structure. For buff anatomies, AI models still suck very hard at getting all the dents and bumps right, especially for lower arm muscles. It's a bit less obvious here in AI-Blue-Harry's case, but you can easily see it on the IRL poster.

AI-Blue-Harry vs. Midjourney

image/png

badlogic,
@badlogic@mastodon.gamedev.place avatar

So the party that was founded by Nazis is now so ashamed of their own bodies, that they have to use generative AI to create their propaganda. Noted.

In case of AI-Blue-Harry, they not only want to follow some "ideal", but also want to imply that he's one of "us": a hard working metal worker. With a shitty Thor hammer and tribal tattoo. While the real "Blue-Harry" (a nick he hasn't had in previous campaigns) is a banker.

They are getting dumber by the minute.

badlogic,
@badlogic@mastodon.gamedev.place avatar

@Landa yep, all them Insta gym sharks.

badlogic,
@badlogic@mastodon.gamedev.place avatar

@rattenhirn yep, that's what I imagine a credit risk manager to look like.

badlogic,
@badlogic@mastodon.gamedev.place avatar

@graves501 oh, I can totally believe it. points at everything

  • All
  • Subscribed
  • Moderated
  • Favorites
  • anitta
  • InstantRegret
  • thenastyranch
  • mdbf
  • khanakhh
  • Youngstown
  • slotface
  • hgfsjryuu7
  • ngwrru68w68
  • rosin
  • kavyap
  • Durango
  • PowerRangers
  • DreamBathrooms
  • Leos
  • magazineikmin
  • cisconetworking
  • cubers
  • vwfavf
  • tacticalgear
  • everett
  • osvaldo12
  • ethstaker
  • tester
  • normalnudes
  • modclub
  • GTA5RPClips
  • provamag3
  • All magazines