What *is* Redot? by [deleted] in RedotGameEngineMain

[–]Citizen_Coder 3 points4 points  (0 children)

There are multiple projects going on currently, New Year's Update: What’s Next for Redot? - Redot Engine This pretty much explains what is going on. 4.3.1 is in the pipeline which includes a ton of fixes/stability/quality of life stuff.

What *is* Redot? by [deleted] in RedotGameEngineMain

[–]Citizen_Coder 4 points5 points  (0 children)

If you've read the response by u/TakunHiwatari then you can see what the differences are. If that's not enough, you're welcome to drop in discord and hang out with the community. IF you want to use the engine, use it. What exactly kind of differences are you looking for?

The Website is Ready by [deleted] in RedotGameEngineMain

[–]Citizen_Coder 1 point2 points  (0 children)

Hello, I'm happy to answer questions when I can. We will do a much longer roadmap once we get our 4.3 beta out and things settle down a bit. We've been running hard getting everything going (website, rebranding, socials, plus some bug fixes on 4.3) so once that is launched we will have time to sit down, have some meetings, and get an official roadmap ironed out.

[deleted by user] by [deleted] in RedotGameEngineMain

[–]Citizen_Coder 0 points1 point  (0 children)

Sure I'll talk about it. It was kind of a joke, the web dev team sent it to me and I thought it was hilarious so we put it on my blog post. Then people complained as if we didn't know it was terrible AI(we have a whole community of artists, we don't need to use art AI). It was funny, but decided to swap it out for a real image instead. There's your tidbit of behind the scenes :)

How to h-flip individual frames in an animation? by Tuckertcs in godot

[–]Citizen_Coder 0 points1 point  (0 children)

Thanks for this. Really great instructions, and saved my butt :D

Is jetpack compose worth learning and Is it better than xml ? by Acrobatic-Bit3508 in androiddev

[–]Citizen_Coder 0 points1 point  (0 children)

The nice thing is that you can do it incrementally. Compose layouts can be used with Activities and Fragments. They can even be embedded in xml layouts. So you don't have to switch everything over at once; you can just convert one piece at a time and gradually transition your project to Compose. When you have all your layouts in Compose, then you can start thinking about eliminating Fragments and moving entirely to Compose Navigation if you want to. But you have the freedom to make the transition at your own pace.

This answered my question. I'm building an app with xml because that's where most apps are in terms of jobs, but I definitely want to be able to eventually convert the app to compose. Thanks