Skip to content

Commit

Permalink
Añade meta a los menús manuales
Browse files Browse the repository at this point in the history
  • Loading branch information
yagueto committed Jun 16, 2023
1 parent b472674 commit e1878d9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server/screens/game/WaitingRoom.gd
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,12 @@ func _on_ExitOpeningArea_body_exited(body):


func _create_meta(area): #Crea la meta con su posición x e y
area.position.x = 500 * 32 + 1280 # El primer valor en ambas operaciones indica la posición (x,y)
area.position.x = $"Tilemap 2_0".MAP_LENGTH * 32 + 1280 # El primer valor en ambas operaciones indica la posición (x,y)
area.position.y = -10 * 32 + 720 # no cambiar: [* 32 + 1280] o [* 32 + 720]
area.scale.y = max(-$"Tilemap 2_0".MIN_ALTURA, $"Tilemap 2_0".MAX_ALTURA) * 32 * 4
# NOTA: Esto de la escala es mejorable, estamos ampliando la escala y, para evitar problemas, lo
# multiplicamos por cuatro y maloserá que no funcione.
# TODO: si peta la meta, mirar aquí :s


func _on_Meta_body_entered(body):
Expand Down

0 comments on commit e1878d9

Please sign in to comment.