diff options
author | altaf-creator <dev@altafcreator.com> | 2024-04-13 14:55:31 +0700 |
---|---|---|
committer | altaf-creator <dev@altafcreator.com> | 2024-04-13 14:55:31 +0700 |
commit | 24f5e910dd8f575adc483f768422ab51fdf905cc (patch) | |
tree | 3486579c0949ec89f3550ee94d35dc20a111ab0d /Scripts/GlobalVariables.gd |
Initial commit. Exists: NumberNode, Player, dragging and dropping, joining NumberNodes
Diffstat (limited to 'Scripts/GlobalVariables.gd')
-rw-r--r-- | Scripts/GlobalVariables.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Scripts/GlobalVariables.gd b/Scripts/GlobalVariables.gd new file mode 100644 index 0000000..6a77bc6 --- /dev/null +++ b/Scripts/GlobalVariables.gd @@ -0,0 +1,6 @@ +extends Node + +## When player is dragging to find other [NumberNodes] +var is_snapping : bool = false +## Player, please assign yourself here at _ready(): +var player : Player |