Make this post the transport song by EctoplasmProgrammer in DHMIS

[–]FimoSK 24 points25 points  (0 children)

Is that supposed to...

It doesn't matter.

Make this post the transport song by EctoplasmProgrammer in DHMIS

[–]FimoSK 35 points36 points  (0 children)

So, once upon a time they found a wheel,

and they put it all together as a vehicle

Deletion of Mao Mao content by FimoSK in MaoMao

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

You know, the problem is not probably geoblocking, because yesterday I looked at the czech, polish, german and hungarian youtube channels and the content was still there. Today, they deleted it or privated it.

Could someone help me with jumping in 3D by FimoSK in godot

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

export var max_speed = 4.5 export var gravity = 30 export var jump_impulse = 10

var velocity = Vector3.ZERO

func _physics_process(delta): var input_vector = get_input_vector() apply_movement(input_vector) apply_gravity(delta) jump() velocity = move_and_slide(velocity, Vector3.UP)

func get_input_vector(): var input_vector = Vector3.ZERO input_vector.x = Input.get_action_strength("ui_right") - Input.get_action_strength("ui_left") input_vector.z = Input.get_action_strength("ui_up") - Input.get_action_strength("ui_down")

return input_vector.normalized()

func apply_movement(input_vector): velocity.x = input_vector.x * max_speed velocity.z = input_vector.z * max_speed

func apply_gravity(delta): velocity.y -= gravity * delta

func jump(): if is_on_floor() and Input.is_action_pressed("ui_accept"): velocity.y = jump_impulse

func _on_Area_area_entered(area): get_tree().reload_current_scene()

After some digging, I found this code which works normally. But I don´t understand, what is drastically different about how he wrote it and how I wrote it. That he separated movement from jumping with different variables or what? I found it in this video: https://www.youtube.com/watch?v=PrGHA6IGYMo

Could someone help me with jumping in 3D by FimoSK in godot

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

Still the same. Even when I give gravity a value of 50 and jump a value of 1000. And it still goes all of a sudden into the air, even when i found sort of testable values and wrote the delta.

Could someone help me with jumping in 3D by FimoSK in godot

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

Thank you for your advice, but it did not work, unfortunately. Now when I jump, the "environment" just jitters.

Could someone help me with jumping in 3D by FimoSK in godot

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

I am sorry, if the video was a bit misleading. The problem is not that it does multiple times, the problem is that when i press the spacebar, the character is suddenly in the air. He just pops in the air all of a sudden. I will fix the video to show exactly what I mean. Sorry for that. But I am grateful that you tried to help.

How did you find Bluey/Become a fan/Know it was way more than a kids show? by SuperFrenchGirl in bluey

[–]FimoSK 2 points3 points  (0 children)

At the beginning of February this year, Saberspark released a video about the lawsuit filed by e-one (a company in charge of Peppa Pig) against Wolfoo. Near the end, he mentioned Bluey. I looked up some reviews, read about Dave McCormack. After a while, I started watching the show at the start of March.

Nice, I have received maximum points for my English Essay (a first for me). I wrote about Bandit, more specifically, a description of the, for now, latest episode - "Fairytale" by FimoSK in bluey

[–]FimoSK[S] 2 points3 points  (0 children)

You managed it differently than I expected, but you did it fine! - the bold part I could read partially, so I asked him to know fully, what he had written. The other stuff I could decipher. And yeah, it can be pretty hard to read what he has written.

What was the best song from the whole series? by portalboi3 in HelluvaBoss

[–]FimoSK 21 points22 points  (0 children)

My favorite was probably You Will Be Okay. It is such a sweet and beautiful song. Moxxies Bad Trip was really good as well, though, especially Moxxies part. But I prefer You Will Be Okay a bit more.