6 lines
126 B
GDScript
6 lines
126 B
GDScript
class_name PauseSingleton extends Node
|
|
|
|
func isMovementPaused() -> bool:
|
|
if !UI.TEXTBOX.isClosed:
|
|
return true
|
|
return false |