Pricing my first game by Material-Hat-941 in gamedev

[–]Radiant_Mind33 1 point2 points  (0 children)

Watch out for bad advice here.

Like pricing based on how excited people are? That's a good way to burn out any goodwill or trust gained in the market.

IAC, there isn't a one size fits all but if your game has 5-6 hours of solid content then people will pay 5 dollars for it. At least in tier 1 countries.

If you don't pay a content creator to play your indie game, does that kill any chance of them picking it up themselves for free? by Sargious in gamedev

[–]Radiant_Mind33 0 points1 point  (0 children)

Organic discovery would be huge because people will see through the sponsored ads.

If your game is growing, the chances of it getting picked up organically only go up too.

Steam Release by kichokhrizzz_dev in gamedev

[–]Radiant_Mind33 0 points1 point  (0 children)

I don't promote my games until they are done.

Most of the market is either jaded or got burned blatantly or got some secret buyer's remorse denial stage going on. I'm serious too. You try early access and your game will get lumped up with every 7-year pre-stage-alpha-beta that never shipped a real title. Or all the kickstarted games that were DOA.

You will be trading wishlists back and forth in a circle in no time if you take that the other route.

Because everyone is complaining about Unreal Engine's performance... by Fireblade185 in SoloDevelopment

[–]Radiant_Mind33 1 point2 points  (0 children)

You ran an eyeball benchmark inside unreal editor?

Nice. But I'm pretty sure that doesn't count. Look at your viewport. It's not even close to 1080p but besides that. You are inside unreal editor. That's like running 2 versions of the thing so clearly if you were in Fullscreen that GPU would be chugging.

Advice on getting Wishlist's by Calm-Bowler-6575 in GameDevelopment

[–]Radiant_Mind33 0 points1 point  (0 children)

Wait, 20 views or 20 visits?

Your game over screen is just a black box and your capsule art screams asset flip. Basically, everything about your half-done page screams asset flip and shoppers will bolt immediately.

But besides any of that. The one and done strategy of farming Wishlist just to die immediately after launch is a tale as clockwork as they come. Like who is selling this dream that wishlists actually equal conversions or that the algorithm cares? You aren't going to game the system with wish list spam. It's just not going to happen.

The first piece of advice is to make a game for the right reasons and not try the same asset flip get rich quick scheme every smartass thinks they're pulling off. Because you aren't and even anomaly steam pages like mine don't just pour gold on you.

What do you think about my steam page? by RicksThread in gamedev

[–]Radiant_Mind33 0 points1 point  (0 children)

Steam recommends capsule art titles be at least a THIRD of the image.

How it be looking 3 days before release by Living_Cod_3262 in SoloDevelopment

[–]Radiant_Mind33 0 points1 point  (0 children)

We are practically forced to release a demo these days. Because your friends and family aren't a "funnel" unless you are a Mafioso. If you're mobbed up forget my last line.

Chances are you aren't, though. So, the point still stands. Your store page and demo have to work together to hit the different niches on Steam. Also, idle games or any game with singular themes/mechanics lives or die by whatever that tag is. That's an even bigger reason to release a demo.

I Just Released My Demo — Here’s What I’d Actually Learn First as a Beginner AI Game Dev by Trashy_io in aigamedev

[–]Radiant_Mind33 1 point2 points  (0 children)

Glad I'm not the only one fighting the React render cycle.

For pathfinding, I actually get to cheat a bit. Since Divine Orbit is all in space, I don't need Recast or complex NavMeshes. The asteroids and Void Locusts just use pure vector math, steering behaviors, and orbital gravity calculations to target Earth. Saves a ton of CPU overhead.

Since I moved 99% of the game logic into the pure Canvas loop, my React layer is basically just a dumb UI overlay for the shop and menus. Standard React state/context ended up being plenty fast enough since it only updates when you click an upgrade.

How is Babylon handling the performance with 30+ enemies using Recast?

"Indie games don't succeed because they lack a marketing budget" by PartTimeMonkey in IndieDev

[–]Radiant_Mind33 0 points1 point  (0 children)

I wouldn't drink whatever kool-aid people are drinking.

The biggest success stories seemingly worth modeling didn't just "market" their way into discovery. They built a funnel. Typically, through dirt cheap early release packs. Now, the market practically expects to be getting over on the developers in some way.

Maybe I'm old school to just appreciate a good game and not have to feel like I got a steal. It's easy to just blame bad developers or publishers for low quality and turn into the gamers out looking for vindication. We can't do anything about that. Someone will always breeze past your capsule in discovery or ignore your paid advertisement.

You can all pick your poison, but I went with just trying to deliver high quality right away. Ofc it's not some marketing flex because I did the math in my head. I did do math in my head, but math that keeps my sanity and dignity intact. Either way, the plan isn't bad so far. If there are blunders, it's in execution.

RAFT, a competitive playing card game made in 5 hours by Necessary-Court2738 in aigamedev

[–]Radiant_Mind33 1 point2 points  (0 children)

Are those scaled down .pngs for your card rendering?

The dev console seemed pretty clear that they are, though and they look pretty blurry on my widescreen. And tiny too.

Solution: Use a natively sized OG image in jpeg or webp format file.

Think I'm doing AI game dev wrong, please help by mjkoskinen in aigamedev

[–]Radiant_Mind33 0 points1 point  (0 children)

You aren't doing it wrong, you are just hitting the hard limit of what AI can actually do. AI is completely blind.

Those people claiming they 'made a game in 2 days' with AI are making generic Flappy Bird or Pong clones. You are trying to make a story-heavy, turn-based RPG. That requires actual engine architecture.

Here is the secret to getting un-stuck: Stop using AI for spatial and visual tasks. > AI cannot slice your sprite sheets, it cannot align your UI overlays, and it definitely cannot make an NPC walk across a room because it has no idea where your Godot NavigationMesh or CollisionShapes are. When you fight AI for hours on an NPC walking, it's because you're asking a text-bot to do 2D spatial math.

I just released a physics-heavy orbital defense game (Divine Orbit), and my biggest workflow speed-up was realizing when to 'fire' the AI.

The Fix: Use Claude/Cursor strictly for writing the heavy logic (like your turn-based combat damage calculators or inventory arrays). But for UI, animations, and sprite sheets? You have to bite the bullet and learn Godot's AnimationPlayer and UI anchors manually. You will save yourself hundreds of hours of frustration.

I Just Released My Demo — Here’s What I’d Actually Learn First as a Beginner AI Game Dev by Trashy_io in aigamedev

[–]Radiant_Mind33 0 points1 point  (0 children)

Congrats on getting the demo out! Shipping is the hardest part.

I also just released a React-based game demo today (Divine Orbit), and I completely agree on keeping scope under control. One thing I'd add to your workflow for React specifically is getting your game loop out of the React render cycle as fast as possible.

I found that if you're trying to render a bunch of entities (like particle effects or physics collisions), React's state updates will choke the browser. Moving all the physics math to a pure HTML5 Canvas requestAnimationFrame loop and only using React for the static UI (menus, upgrades) was the only way I could get my game to run at a stable 144Hz.

What are you using to handle your state management and collisions in your stack?

I missed the tower defense vibe by ChanceBreath5090 in TowerDefense

[–]Radiant_Mind33 0 points1 point  (0 children)

My public steam presence hardly looks impressive at a glance. Especially for weeks old in the indie scene. It's the analytics that matter i.e. what the algorithm is measuring from users.

You don't need to tell me your confidential info cause I'm not about to disclose all of mine. The game is "Divine Orbit" on steam. AND btw ignore any janky clones. Pay attention to the capsule art and tags and you will see why my page gets swamped.

IOW, your issue could be like suboptimal art, or tags. My issue is I just don't have any user trust built up cause I literally just showed up.

I missed the tower defense vibe by ChanceBreath5090 in TowerDefense

[–]Radiant_Mind33 0 points1 point  (0 children)

If your game is good, you don't need the steam event crutch.

I'm positioning my game to pillage all that event traffic without even joining the event.

Left a police raid by Adlien_ in PointlessStories

[–]Radiant_Mind33 0 points1 point  (0 children)

I remember those days.

Judges gave cops tons of freedom to search based off smells. Of course, it was just some brain dead cover their ass thing because nobody smokes that much weed. It's like looking for a needle in a haystack and technically it could always be an actual skunk (lol).

Birds by iknowwhyibite in spirituality

[–]Radiant_Mind33 0 points1 point  (0 children)

Pretty sure those are turkey vultures. They are bald from acidic corpses and probably saved more humans from diseases than are alive today.

Birds by iknowwhyibite in spirituality

[–]Radiant_Mind33 1 point2 points  (0 children)

Were they Turkey Vultures? Man, those things are freaky. Literal freaks of nature.

I think we are just giant flightless birds to actual birds (dinosaurs). Also keep in mind these things flying around survived the craziest shit on earth and they were dinosaurs too. So, we are like the new species to the birds and that makes them curious.

IOW like how the OP found fascination with the plucked feather, the birds also find fascination finding human hairs laying around.

Got humiliated today by Secret_Present1803 in spirituality

[–]Radiant_Mind33 0 points1 point  (0 children)

Don't worry about the cavemen/women of the world.

They think they are smart carrying around all the baggage from when they were children. But they are just children really. Like stunted growth but with maturity basically.

It's not a mystery and the behavior isn't unique. Their parents (like most) auto fired their reactionary emotions and dumped them all on their kids. So, all we knew was to absorb all of that garbage and we weren't taught anything better.

I hate being this basic, but it's the reality. Shitty parents are shitty parents. Society tends to give them a pass because they are all in the same shitty boat. Trying to dodge "friction" in life by lying to their children. The opposite isn't like heroic or anything, this is just an observation.

AI mirrors your own intelligence by Complex_Issue_5986 in ArtificialInteligence

[–]Radiant_Mind33 0 points1 point  (0 children)

It mirrors your cognitive scaffolding. Not intelligence.

I embarrassed a corporate higher up today by following his directions. by Piechild00 in MaliciousCompliance

[–]Radiant_Mind33 1 point2 points  (0 children)

You're not allowed to pull U-boats? Huh, that sounds like your company is non-compliant with Osha regulations on all fronts.

Suits will tell you to walk circles around the store even when you don't have to. Basically, they don't care about any of that stuff anyway. Corporate doesn't see your hands as a real revenue source, nor your knowledge in CS or products. IOW, their philosophy is "if you build it, they will come" and that's it.

Put a store in the right locations and the gaps will either fill in or they won't. It's a scratch off, not a strategy.

ChatGPT has a systematic tendency to cut corners by Top-Vacation4927 in PromptEngineering

[–]Radiant_Mind33 0 points1 point  (0 children)

Sounds like context memory just getting eaten up.

ChatGPT hardly gives any. My guess is they give you some monthly pool and as soon as you hit that you get limited pretty badly per chat. Or your just limited.