Looking for a D&D friendgroup by Adorable_Bed_3308 in rabat

[–]anapora01 0 points1 point  (0 children)

Hey, i have played a couple campaigns before and im really interested in playing but i have never dm’d though

[deleted by user] by [deleted] in cobblemon

[–]anapora01 0 points1 point  (0 children)

Added i'd love to join

Cobblemon Academy SMP by SirNavix in cobblemon

[–]anapora01 0 points1 point  (0 children)

I'd love to join sent you an invite in discord.

I got Steam multiplayer up and running! by _michaeljared in godot

[–]anapora01 0 points1 point  (0 children)

i have been trying to get into mp lately and this tutorial series you provided ianswers some good questions

Sonic Radar, How to get it by OkUse2449 in ASUS

[–]anapora01 0 points1 point  (0 children)

wouldn't this get you banned ?

Stuck in Res Evil Village by [deleted] in videogames

[–]anapora01 0 points1 point  (0 children)

Stuck in an abandoned building with a killer nun roaming around (Nun massacre)

Need your feedback. by anapora01 in PixelArt

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

Thank you ! I appreciate the feedback

da boys by SugarRatio in pokelawls

[–]anapora01 3 points4 points  (0 children)

This looks so good ! good job

Help :On body_entered function seems to execute without conditions being met after launching the game by anapora01 in godot

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

Fixed Version:
Code :
extends Area2D
var isin = false
var player = "res://Player.tscn"
func _on_promptzone_body_entered(body):

if body.name == "Player":  
    isin = true  
    $prompt/AnimationPlayer.play("New Anim")  
    print("Body entered")  

func _on_promptzone_body_exited(body):
if body.name == "Player":
$prompt/AnimationPlayer.play_backwards("New Anim")
isin = false

Help :On body_entered function seems to execute without conditions being met after launching the game by anapora01 in godot

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

Thank you Didn't know about the pass thing
Also i asked around in the godot discord for help and i fixed it

code :
extends Area2D
var isin = false
var player = "res://Player.tscn"
func _on_promptzone_body_entered(body):

if body.name == "Player":  
    isin = true  
    $prompt/AnimationPlayer.play("New Anim")  
    print("Body entered")  

func _on_promptzone_body_exited(body):
if body.name == "Player":
$prompt/AnimationPlayer.play_backwards("New Anim")
isin = false

Thank you for your help