mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-06 14:10:55 +03:00
Use "not" instead of the exclamation mark in GDScript files
Also add String casts
This commit is contained in:
@@ -27,7 +27,7 @@ func strsec(secs):
|
||||
|
||||
|
||||
func _process(_delta):
|
||||
if !playing or !$Player.playing:
|
||||
if not playing or not $Player.playing:
|
||||
return
|
||||
|
||||
var time = 0.0
|
||||
|
||||
Reference in New Issue
Block a user