CharacterBody2D not colliding with tilemap

Godot Version

4

Question

my characterBody2d is not colliding with tilemaps, player Character is though, how do i fix this?

You can set the colliders in the Tile Map settings. Search it up in Youtube, I remember seeing a lot of vids that explains it step by step
Also make sure u have move_and_slide() function in your character GDscript.

Ty, i forgot about the post and still had the problem, all i had to do was

func _physics_process(delta):
	move_and_slide()

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.