Skip to content
Snippets Groups Projects
Commit 1cceda46 authored by Frederic Aust's avatar Frederic Aust
Browse files

Bugfix: Die run Funktion von Obstacle wurde bei der Netzwerksteuerung nicht...

Bugfix: Die run Funktion von Obstacle wurde bei der Netzwerksteuerung nicht aufgerufen, weshalb das Obstacle immer oberhalb des Bildschirmrandes blieb
parent e6570bec
No related branches found
No related tags found
1 merge request!8# Einfuehrung der von oben nach unten fallenden Hindernisse
...@@ -309,6 +309,8 @@ func _on_data(id): ...@@ -309,6 +309,8 @@ func _on_data(id):
$PlayerOne.run(game_playtime_per_step) $PlayerOne.run(game_playtime_per_step)
$PlayerTwo.run(game_playtime_per_step) $PlayerTwo.run(game_playtime_per_step)
ball.run(game_playtime_per_step) ball.run(game_playtime_per_step)
if $"/root/GameSettings".obstacles_enabled:
$Obstacle.run(game_playtime_per_step)
timeout() timeout()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment