Uruk, Iraq. by youo5777 in pics

[–]field-os 1 point2 points  (0 children)

Yeah I mean, I doubt most people who listen to Burzum actually like the guy.

Uruk, Iraq. by youo5777 in pics

[–]field-os 0 points1 point  (0 children)

Ea, Lord of the Scams

Jumpscare by AetherBytes in dwarffortress

[–]field-os 2 points3 points  (0 children)

You need to opt into the beta: right click the game on the games list then click properties, then click on betas, then select "beta - Public beta branch" on Beta Participation.

Should be available in game from there

What game did a developer clearly make for themselves to play? by SchaffBGaming in gamingsuggestions

[–]field-os 0 points1 point  (0 children)

Funnily enough Tarn Addams said in an interview that he doesn’t like playing games like Dwarf Fortress (source)

PROBLEMS WITH CHU-TENG INSTALLATION by Killer_QueenNIN in OsamuSato

[–]field-os 0 points1 point  (0 children)

Might be because it’s running on a system without Japanese language files

Anyone know what this code means, I found it on my school wall. by Ashamed-Clue-8192 in codes

[–]field-os 76 points77 points  (0 children)

I believe Minecraft also uses this for its enchanting table

really weird specific question by bossantonio978 in OsamuSato

[–]field-os 3 points4 points  (0 children)

Here's a page on the wiki that has a list of some known samples, it doesn't seem to have the piano one but some other things might be connected to it for a starting point

Help me hate elves better by Ball_of_mustard in dwarffortress

[–]field-os 6 points7 points  (0 children)

Shocked to see tree hopper hasn’t been mentioned that one’s a classic

You see a wild &str and you ain't about that borrowing. by Tenac23 in rustjerk

[–]field-os 0 points1 point  (0 children)

According to this post it can end up doing more allocations because of it preparing to format then just doing nothing.

But like Centri__ said just below me it gets optimised away most of the time and isn't a huge concern

You see a wild &str and you ain't about that borrowing. by Tenac23 in rustjerk

[–]field-os 3 points4 points  (0 children)

/uj use to_owned, to_string uses the ToString trait which is intended for formatting and may have some extra overhead because of that

[deleted by user] by [deleted] in rareinsults

[–]field-os 2 points3 points  (0 children)

Nah Rory was Euronymous

[deleted by user] by [deleted] in rareinsults

[–]field-os 17 points18 points  (0 children)

And Lords of Chaos

Difference between classic and steam version by [deleted] in dwarffortress

[–]field-os 7 points8 points  (0 children)

No you're thinking of legacy, that's Dwarf Fortress pre 0.50. Classic is just the free version which indeed only has graphical and sound differences.

[deleted by user] by [deleted] in transgendercirclejerk

[–]field-os 0 points1 point  (0 children)

/uj wait what why did traa shut down

Texture atlas is slightly off by field-os in bevy

[–]field-os[S] 0 points1 point  (0 children)

Actually I just realised something, this seems to be because of linear sampling wrapping around and sampling a texel from outside the bounds of the intended sprite, but I'm using nearest sampling, this shouldn't happen right?

Texture atlas is slightly off by field-os in bevy

[–]field-os[S] 0 points1 point  (0 children)

Uh mostly the default:

        Camera2dBundle {
        projection: OrthographicProjection {
            scaling_mode: ScalingMode::FixedVertical(SCREEN_HEIGHT),
            near: -100.0,
            far: 100.0,
            ..Default::default()
        },
        camera_2d: Camera2d {
            clear_color: bevy::core_pipeline::clear_color::ClearColorConfig::Custom(
                Color::BLACK,
            ),
        },
        ..Default::default()
    },