46
got a new Laptop (lemmy.world)

also ik, I still use neofetch instead of hyfetch

[-] bi_tux@lemmy.world 3 points 4 days ago

how much did your insurance cover? I mean ambulances are free where I live, but it would be excusable if it costs like 600$ (don't get me wrong, that's still terrible)

[-] bi_tux@lemmy.world 2 points 4 days ago

real estate certainly isn't cheaper in the eu, except you only count new york real estate prices

235

So I thought about this in the shower amd it makes sense to me, like praying and stuff never worked for most people I know, so a direkt link to god gotta be unlikely. That made me conclude that religion is probably fake, no matter if there's a god or not. Also people speaking to the same god being given a different set of rules sounds stupid, so at least most religions must be fake.

45
submitted 3 weeks ago by bi_tux@lemmy.world to c/asklemmy@lemmy.ml

Why do some cars have their engines in the front and some in the back, what are the advantages and disadvantages of the two builds. And why doesn't every car have full wheel drive?

217
doggo (lemmy.world)
submitted 3 weeks ago by bi_tux@lemmy.world to c/aww@lemmy.world
7
submitted 2 months ago* (last edited 2 months ago) by bi_tux@lemmy.world to c/rust@lemmy.ml

So I want to update the sprite so my character looks in a different direction each time the player presses left/right, how could I do this? I can't do it in the setup fn, since it's a startup system, appreciate any help

EDIT: changed formating

here is my code:

use bevy::prelude::*;

`fn main() {
    App::new()
        .add_plugins(DefaultPlugins.set(ImagePlugin::default_nearest())) // prevents blurry sprites
        .add_systems(Startup, setup)
        .add_systems(Update, animate_sprite)
        .add_systems(Update, player_movement_system)
        .run();
}

const BOUNDS: Vec2 = Vec2::new(1200.0, 640.0);
static mut FLIP_BOOLEAN: bool = false;

fn set_flip_boolean(boolean: bool) {
    unsafe {
        FLIP_BOOLEAN = boolean;
    }
}

fn get_flip_boolean() -> bool{
    unsafe {
        FLIP_BOOLEAN
    }
}

#[derive(Component)]
struct Player {
    movement_speed: f32,
}

#[derive(Component)]
struct AnimationIndices {
    first: usize,
    last: usize,
}

#[derive(Component, Deref, DerefMut)]
struct AnimationTimer(Timer);

fn animate_sprite(
    time: Res<Time>,
    mut query: Query<(&AnimationIndices, &mut AnimationTimer, &mut TextureAtlas)>,
) {
    for (indices, mut timer, mut atlas) in &mut query {
        timer.tick(time.delta());
        if timer.just_finished() {
            atlas.index = if atlas.index == indices.last {
                indices.first
            } else {
                atlas.index + 1
            };
        }
    }
}


fn setup(
    mut commands: Commands,
    asset_server: Res<AssetServer>,
    mut texture_atlas_layouts: ResMut<Assets<TextureAtlasLayout>>,
) {
    let texture = asset_server.load("sprites/Idle01.png");
    let layout = TextureAtlasLayout::from_grid(Vec2::new(64.0, 40.0), 5, 1, None, None);
    let texture_atlas_layout = texture_atlas_layouts.add(layout);
    let animation_indices = AnimationIndices { first: 0, last: 4 };
    let boolean = get_flip_boolean();
    commands.spawn(Camera2dBundle::default());
    commands.spawn((
        SpriteSheetBundle {
            texture,
            atlas: TextureAtlas {
                layout: texture_atlas_layout,
                index: animation_indices.first,
            },
            
            ..default()
        },
        Player {
            movement_speed: 500.0,
        },
        animation_indices,
        AnimationTimer(Timer::from_seconds(0.1, TimerMode::Repeating)),
    ));
}

fn player_movement_system(
    time: Res<Time>,
    keyboard_input: Res<ButtonInput<KeyCode>>,
    mut query: Query<(&Player, &mut Transform)>,
) {
    let (guy, mut transform) = query.single_mut();

    let mut movement_factor = 0.0;

    let mut movement_direction = Vec3::X;

    if keyboard_input.pressed(KeyCode::ArrowLeft) {
        movement_factor -= 1.0;
        movement_direction = Vec3::X;
        set_flip_boolean(true);
    }

    if keyboard_input.pressed(KeyCode::ArrowRight) {
        movement_factor += 1.0;
        movement_direction = Vec3::X;
        set_flip_boolean(false);
    }

    if keyboard_input.pressed(KeyCode::ArrowUp) {
        movement_factor += 1.0;
        movement_direction = Vec3::Y;
    }

    if keyboard_input.pressed(KeyCode::ArrowDown) {
        movement_factor -= 1.0;
        movement_direction = Vec3::Y;
    }


    let movement_distance = movement_factor * guy.movement_speed * time.delta_seconds();
    let translation_delta = movement_direction * movement_distance;
    transform.translation += translation_delta;

    let extents = Vec3::from((BOUNDS / 2.0, 0.0));
    transform.translation = transform.translation.min(extents).max(-extents);
}
6
submitted 3 months ago by bi_tux@lemmy.world to c/guns@lemmy.world

I hope this isn't out of context, also I don't want to "own the libs" or something here, I'm actually interested.

106
submitted 3 months ago* (last edited 3 months ago) by bi_tux@lemmy.world to c/startrek@startrek.website

tbh I did a horrible paint job, but she still liked it

EDIT: the parts are 3d printed (not my model tho)

[-] bi_tux@lemmy.world 41 points 3 months ago

I maybe don't get the meme, but why would western communists like modern russia? the most supporters of russia I know irl are far right

[-] bi_tux@lemmy.world 44 points 4 months ago

for a moment there I didn't get it, since it can't possibly have 65° on a land that grows grass yet, then I realised you have never heared of Celcius

[-] bi_tux@lemmy.world 50 points 4 months ago

accorns are brown... I'm sure it had a gun

123
54
325
submitted 5 months ago by bi_tux@lemmy.world to c/risa@startrek.website
[-] bi_tux@lemmy.world 57 points 5 months ago

the concept of science fiction is way to librul, since it suggests that science is real

32
85
submitted 6 months ago by bi_tux@lemmy.world to c/unixporn@lemmy.ml
[-] bi_tux@lemmy.world 39 points 6 months ago

Why do so many people feel bothered about this? It's not like the comunity is associated with a political party or something due to this. Also it's a meme comunity and this is a meme, what did you expect?

[-] bi_tux@lemmy.world 46 points 7 months ago

If it was released today we'd have another rage from the "fucking pronouns" guy

[-] bi_tux@lemmy.world 47 points 8 months ago
[-] bi_tux@lemmy.world 55 points 9 months ago

Young men are always more likely to fall for investment scams

[-] bi_tux@lemmy.world 42 points 9 months ago

Laser cooling exists, but I don't suppose you can afford one or want your beer on 2°K

[-] bi_tux@lemmy.world 40 points 11 months ago* (last edited 11 months ago)

Media piracy.

If I wanted to watch a show, I'd have to pay 80€/month, because every streaming site only has one or two seasons.

I'm just done with corporate greed, fuck big companies, piracy is a service problem.

view more: next ›

bi_tux

joined 1 year ago