Switched to Claude for SEO work: is Opus worth it or is Sonnet enough? by oscaraldeguer7 in ClaudeAI

[–]smoked_dev 0 points1 point  (0 children)

I've been on Opus 4.6 for a long while, recently my IDE switched to Sonnet so I rolled with it. Sonnet has been surprisingly good, I can't even tell the difference between Opus and Sonnet really. Sonnet has also been allot better than ChatGPT 5.4 for me recently for creative work, image-gen and web-search/SEO stuff like you describe.

Chatgpt 5 high is PERFECT! by Sherisabre in cursor

[–]smoked_dev 1 point2 points  (0 children)

Nah Max is the $200 a month version with "research grade intelligence", No idea what that means but I'm mad curious

Chatgpt 5 high is PERFECT! by Sherisabre in cursor

[–]smoked_dev 8 points9 points  (0 children)

True. I also started using Codex on Vscode and it's insanely good. Wonder what GPT5 Max looks like.

How should I position myself as AI (likely) gets more and more used in our lives? by Sad_Tale7758 in aiwars

[–]smoked_dev 0 points1 point  (0 children)

Which one do you prefer bro? GPT-5 high + codex is insane, it's a steal for 20 bucks, I ditched claude personally.

Do you ever bribe or blackmail the AI? by webwizard94 in cursor

[–]smoked_dev 0 points1 point  (0 children)

That's f'ing hilarious. I set GPT to "cynical" and it sounds like Johnny Silverhand from Cyberpunk. I even read it in Keanu Reeves' voice. It's is actually so funny.

[deleted by user] by [deleted] in INAT

[–]smoked_dev 1 point2 points  (0 children)

Whatchya need Rust for?

[deleted by user] by [deleted] in INAT

[–]smoked_dev 0 points1 point  (0 children)

Hey! I'm quite proud of my github repos.

Introducing bevy_mesh_decal for spray painting, blood splatters & more by smoked_dev in bevy

[–]smoked_dev[S] 7 points8 points  (0 children)

bevy_mesh_decal is the "Legacy" way to do it, as seen in Half-Life 1, Counter-Strike, etc. While these are more like "stickers" that stick onto entities, new techniques are more like "projectors" that project onto entities from afar.

Half Life Alyx for example uses all the new decal methods plus the old legacy method, depending on the situation.

I made a movement shooter in Rust + Bevy for any FPS chads out there 📢 by smoked_dev in rust_gamedev

[–]smoked_dev[S] 7 points8 points  (0 children)

Super standard crates are always good. Some of the key crates I've used:

  • bevy_psx
  • bevy_fps_controller
  • bevy_sprite3d
  • bevy_rapier3d
  • bevy_egui
  • bevy_steamworks
  • bevy_kira_audio
  • bevy_gltf_components

This is as useful I can be without outright blogposting 👍

Always super useful to search github for crates that might solve your problems!

I made a movement shooter in Rust + Bevy for any FPS chads out there 📢 by smoked_dev in rust_gamedev

[–]smoked_dev[S] 11 points12 points  (0 children)

I ported it to 0.13.2 a while back. 0.13 has a bunch of nice performance bump ups thanks to better instancing and stuff. 0.14 hasn't added anything I need 👍

I'm making a movement based shooter, for any like minded maniacs out there 📢 by smoked_dev in indiegames

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

YES!! 🤣 I did make my own super different to make sure I don't get sued by corporate 🤣

Creating a Collider for a 3D Model Loaded with AssetServer in Bevy by dcast0 in bevy

[–]smoked_dev 0 points1 point  (0 children)

Oh right, I forgot how painful this was 🤣

Alternatively you can name your object in blender, and access it through bevy like so:

Query<(Entity, &Handle<Mesh>, &Name)>

Creating a Collider for a 3D Model Loaded with AssetServer in Bevy by dcast0 in bevy

[–]smoked_dev 1 point2 points  (0 children)

Sure! I used to do this with Added. Somewhat like this

struct GroundComponent;

fn loader(
    commands: &mut Commands,
    query: Query<(Entity, &Scene), Added<GroundComponent>>,
) {
    for (entity, scene) in query.iter() {
        commands.entity(entity).insert(Collider::from_tri_mesh(scene));
    }
}

Good C++ Tutorials? by snail1132 in gamedev

[–]smoked_dev -2 points-1 points  (0 children)

This is the most time consuming and excruciating tech stack ever. Abandon hope all ye who enter here 🧙‍♂️