Flopsy/common/global_state.gd

16 lines
213 B
GDScript3
Raw Permalink Normal View History

2022-07-18 12:58:38 +02:00
extends Node
var keys = {
'yellow': false,
'green': false,
'blue': false,
'red': false
}
var coins = 0
2022-07-18 17:00:53 +02:00
var health = 100
2022-07-19 22:22:16 +02:00
var player : KinematicBody2D = null
2022-07-21 19:21:29 +02:00
const MENU_SCENE = "res://scenes/menu/menu.tscn"