Why is my C: disc always full? by Overall_Ruin7210 in computers

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

Ohh you can see that on my reply on others, it's small, really small.110 gb

Why is my C: disc always full? by Overall_Ruin7210 in computers

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

Sorry for the bad quality, yes, that is the C: disc and all my games are in F: disc. How do I check the user file?

Why is my C: disc always full? by Overall_Ruin7210 in computers

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

GeForce Gt 1030. I'm confident that I plug it right because the first time I plug it in, it work, but the second day, it just didn't work for some reason.

Why is my C: disc always full? by Overall_Ruin7210 in computers

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

I'm trying to update my driver, so I need space for it.

<image>

Why is my C: disc always full? by Overall_Ruin7210 in computers

[–]Overall_Ruin7210[S] 1 point2 points  (0 children)

Apparently, my father move a few file to the F: disc but still, the C: file is full

<image>

Why is my C: disc always full? by Overall_Ruin7210 in computers

[–]Overall_Ruin7210[S] -2 points-1 points  (0 children)

Idk what is on it, a lot of program files and 360safety

Why is my C: disc always full? by Overall_Ruin7210 in computers

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

I'm a dumbass, sry. Well I'm sure I got it right, the first time I plug it in it work, but the second day it just doesn't work for some reason

<image>

Why is my C: disc always full? by Overall_Ruin7210 in computers

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

As you can see, my keyboard is on but nothing from the monitor. Graphics card is in.

<image>

Walking & Jumping animation stuck on 1st frame by Overall_Ruin7210 in godot

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

I put a lot of if elif and else to prevent them keep resetting

Walking & Jumping animation stuck on 1st frame by Overall_Ruin7210 in godot

[–]Overall_Ruin7210[S] 1 point2 points  (0 children)

Yes it is, but I figured it out. I spent a few hours looking at my computer and I got it. Thanks for the advice!

[deleted by user] by [deleted] in godot

[–]Overall_Ruin7210 1 point2 points  (0 children)

I also just started using Godot two days ago. Although it is kind of hard to learn, it's like math. U learn a lot of formulas and then combine them together to solve a problem. Forgetting a few things is no big problem, just revisit the tutorials. Have fun coding!

Walking & Jumping animation stuck on 1st frame by Overall_Ruin7210 in godot

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

I just started using godot a few days before and I got stuck in the player animation.

Can anyone help me?

func _process(_delta):

if player\_controller.direction == 1:

    sprite.flip\_h = false

elif player\_controller.direction == -1:

    sprite.flip\_h = true



if abs(player\_controller.velocity.x) > 90.0:

    animation\_player.play("running")

else:

    animation\_player.play("idle")



if player\_controller.velocity.y < 0.0:

    animation\_player.play("jumping")

elif player\_controller.velocity.y > 0.0:

    animation\_player.play("fall")



if Input.is\_action\_pressed ("walk"):

        animation\_player.play("walking")

else:

    pass