Main public logs
From CPC Game Making
Combined display of all available logs of CPC Game Making. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:00, 27 September 2025 Timothy talk contribs created page Periodic shooting (Created page with "<syntaxhighlight lang="gdscript" line> var waiting_to_shoot = false func _input(event: InputEvent) -> void: if event.is_action("ui_right") and waiting_to_shoot == false: waiting_to_shoot = true await get_tree().create_timer(0.4).timeout print('A shot was fired!') waiting_to_shoot = false </syntaxhighlight>")