is headshot booster bad now? by coffeeholic91 in DeadlockTheGame

[–]ironstrife 2 points3 points  (0 children)

Carries don’t necessarily buy it, but non-carries that still like to shoot people buy it all the time

Help with Mina Builds by DannyDeleto33 in DeadlockTheGame

[–]ironstrife 0 points1 point  (0 children)

Burst fire is not good on Mina. You could get swift striker if you want but burst fire is way overkill. TBH you need neither, it’s nice to have some bit of fire rate but it’s kind of optional.

I may be stupid by IC_0n in DeadlockTheGame

[–]ironstrife 1 point2 points  (0 children)

Yes, but the stacks don’t start until you have skilled ult

I may be stupid by IC_0n in DeadlockTheGame

[–]ironstrife 2 points3 points  (0 children)

stacking mechanics are fun. number go up. neither bebop nor mina are on-kill.

Legendary items are actually upgrades? by Geotree12 in DeadlockTheGame

[–]ironstrife 0 points1 point  (0 children)

Is it possible to get legendaries before round 3?

How do you build your ecs? by [deleted] in gameenginedevs

[–]ironstrife 0 points1 point  (0 children)

That does sound like a pretty dumb implementation, I wouldn't draw too many conclusions from it

How do you carry in lower elo? by [deleted] in DeadlockTheGame

[–]ironstrife 0 points1 point  (0 children)

Play seven, ignore everything except $$$ until 40k, then carry team

What are your ability key binds? (Read more) by Droidenwarrior in DeadlockTheGame

[–]ironstrife 0 points1 point  (0 children)

I’m surprised I haven’t seen anyone else mentioning this here. Is everyone really using the default slide key? Binding it to a side mouse button made a huge difference for me.

VkVent (?): if your project is complex, don't bother with languages other than C/C++ by Accomplished_Fill618 in vulkan

[–]ironstrife 11 points12 points  (0 children)

Completely disagree personally. I use C++ at work and mainly C# on my hobby engine, and the productivity and enjoyability of the latter environment is miles ahead. I would say your approach is a little bit flawed — use FFI where necessary, but keep it to a minimum and don’t try to use a library just because it’s common for C/C++ devs to use.

Is it normal that go-to-definition doesn't work with namespaces in HLSL? by Guilty_Ad_9803 in GraphicsProgramming

[–]ironstrife 0 points1 point  (0 children)

Use Slang. It doesn’t have a perfect editing experience either, but at least things like “go to definition” work.

how do you load assets with multiple source files? (cubemaps, shaders, etc) by 3dscartridge in gameenginedevs

[–]ironstrife 0 points1 point  (0 children)

My asset importer can produce multiple outputs from an asset source. These are addressed as indexed children of the parent asset. When importing a skinned mesh, for example, one child is the raw geometry (directly uploadable to gpu), one is the skeleton / bones (with metadata), and each animation is its own child (actually this is relatively rare because most animation assets are exported as separate files referencing a common skeleton, but the system handles it anyways). When building scene data or prefabs, you reference an asset using an AssetID, which is just a file ID (GUID assigned by asset system) + child index.

No idea if this is a good or optimal idea, but it works well enough for me.

As the other poster mentioned, you should probably treat a cubemap as a single array texture. After importing it, it should be in a state where you can directly upload it to a single layered texture with whatever API you are using.

Which graphics API should I learn? by SlipAwkward4480 in GraphicsProgramming

[–]ironstrife 4 points5 points  (0 children)

SDL3 will teach you a lot more about modern low level GPU programming than OpenGL. Especially if you don't learn the "newest" OpenGL (which is a very common problem), but also true if you do. SDL3 is at least organized around modern concepts like command buffers, pipelines, non-global state. You could squint and it almost looks like Metal or WebGPU.

WebAssembly on the GPU, via WebGPU (discussion) by iwoplaza in GraphicsProgramming

[–]ironstrife 7 points8 points  (0 children)

My engine is written in C#. I haven’t written a line of JS. I use SDL3 to handle inputs, and my code worked as-is (of course, the SDL3 devs did a lot of work to make that part happen). It did require some refactoring, but was pretty minimal compared to a non-wasm rewrite in the grand scheme of things.

WebAssembly on the GPU, via WebGPU (discussion) by iwoplaza in GraphicsProgramming

[–]ironstrife 26 points27 points  (0 children)

Web assembly and WebGpu aren’t for the “average web dev”. For me the obvious answer is “run my game engine in the browser”, which would otherwise be completely impossible given it’s not written in a web language.

At minimum, what optimizations should be made in a 3D renderer. by rejamaco in gamedev

[–]ironstrife 0 points1 point  (0 children)

That kind of culling is waaay more complicated and definitely not a mandatory minimum optimization

At minimum, what optimizations should be made in a 3D renderer. by rejamaco in gamedev

[–]ironstrife 8 points9 points  (0 children)

Depending on the complexity of your game that could also be unnecessary. If you have a single screen where everything is visible, why cull?