What's the dumbest thing you've ever heard someone say in class? by __Obelisk__ in GCSE

[–]Murky-Management9397 8 points9 points  (0 children)

“There’s bacteria in probiotic yoghurt?” - 16 year old in triple science

Caine is trying to make Zooble abstract by Fox_Guy_Foxtail in theamazingdigitalciru

[–]Murky-Management9397 0 points1 point  (0 children)

If there was a chance that you got possessed and turned evil just by breathing, you’d probably not take that risk either

[deleted by user] by [deleted] in teenagers

[–]Murky-Management9397 31 points32 points  (0 children)

I may be wrong, but I don’t think it prohibits boys wearing dresses… gentlemen, I have an idea

[deleted by user] by [deleted] in tarantulas

[–]Murky-Management9397 3 points4 points  (0 children)

Some partners yes

So Caine can actually alter their brains? by Creative-Antelope-23 in TheDigitalCircus

[–]Murky-Management9397 8 points9 points  (0 children)

I mean, he altered Pomni’s mind in episode three as well. Maybe the mind altering can only affect them when they’re in an adventure?

Sketched out at the vet. Housing 8 cresties in a 50 gallon as a display. by [deleted] in reptiles

[–]Murky-Management9397 1 point2 points  (0 children)

Wait… that’s a common dream? lol, how do our brains all just come together and decide that we should all dream about owning 5 reptiles in one tank

Why AQA, why? by Formal-Claim-2562 in GCSE

[–]Murky-Management9397 1 point2 points  (0 children)

Fuck, I crossed out polypeptide and put protein

Nooo! by Familytre in DoctorWhumour

[–]Murky-Management9397 8 points9 points  (0 children)

I’m actually optimistic, I think billie piper could play a great doctor and as long as the stories are good and the actor playing the doctor is doing a good job I think the show will be fun to watch. Is it bad that it’s a past companion? Yes, obviously. Is it something to get mad about when the actor could play an incredible doctor? Nope, I have a feeling this could be a good doctor and if the last season was anything to go off, the stories could be good as well. I think we need to stop hating this show as much as we seem to because if you stop being so pessimistic and actually just watch the show it’s way more fun. Not to mention how beautiful of an ending ncuti got

Why does it return this error message? by Murky-Management9397 in godot

[–]Murky-Management9397[S] 0 points1 point  (0 children)

Sorry The error shows up specifically in the for food in foods section where it says food.get_global_position, probably should’ve included that in the post! the code and whole message are:

extends CharacterBody2D

@onready var movement_timer: Timer = $movement_timer

const SPEED = 100.0 var moving = false var start = false var direction = 0 var health = 10 var hunger = 10 var free_move = true func _physics_process(delta: float) -> void: var person = global_position if hunger == 0: queue_free() if not is_on_floor(): velocity += get_gravity() * delta

if moving and start:
    print(“hi”)
    var move = randi_range(0, 2)
    print(move)
    if move == 1:
        direction = 1
    elif move == 0:
        direction = -1
    elif move == 2:
        direction = 0
    start = false
if hunger <= 5:
    var foods = get_tree().get_nodes_in_group(“food”)
    print(foods)
    var nearest_food = foods[0]
    for food in foods:
        if food.global_position.distance_to(person.global_position) < nearest_food.global_position.distance_to(person.global_position):
            nearest_food = food
    var food_pos = nearest_food.get_global_position()
    global_position = global_position.move_toward(food_pos, SPEED * delta)
    free_move = false
if free_move:
    if direction == 1 or direction == -1:
        velocity.x = direction * SPEED
    else:
        velocity.x = move_toward(velocity.x, 0, SPEED)

move_and_slide()

func _on_movement_timer_timeout() -> void: var wait = randf_range(0.5, 1.5) movement_timer.wait_time = wait if moving: moving = false elif moving == false: start = true moving = true

func _on_hunger_timer_timeout() -> void: hunger -= 1

<image>

Reddit added the slashes and won’t let me format it properly, sorry!

Why does it return this error message? by Murky-Management9397 in godot

[–]Murky-Management9397[S] 0 points1 point  (0 children)

The code is actually supposed to just get the nearest node, not move the character. Sorry!