forked from team-sg/hero-mark-2
added bow
This commit is contained in:
parent
5d01f40535
commit
2d3fc72ebe
50 changed files with 610 additions and 151 deletions
|
@ -8,6 +8,7 @@ onready var green_star = $GreenStar
|
|||
onready var blue_star = $BlueStar
|
||||
onready var magenta_star = $MagentaStar
|
||||
onready var score_counter = $ScoreCounter
|
||||
onready var arrow_counter = $ArrowCounter
|
||||
|
||||
func _physics_process(delta):
|
||||
#Gold Counter
|
||||
|
@ -22,3 +23,5 @@ func _physics_process(delta):
|
|||
magenta_star.visible = Game.stars[4]
|
||||
#Score Counter
|
||||
score_counter.text = "%06d" % Game.score
|
||||
#Arrow Counter
|
||||
arrow_counter.text = "%02d" % Game.arrows
|
||||
|
|
|
@ -114,3 +114,11 @@ margin_right = 264.0
|
|||
margin_bottom = 21.0
|
||||
theme = ExtResource( 10 )
|
||||
text = "000000"
|
||||
|
||||
[node name="ArrowCounter" type="Label" parent="HUD"]
|
||||
margin_left = 237.0
|
||||
margin_top = 1.0
|
||||
margin_right = 321.0
|
||||
margin_bottom = 21.0
|
||||
theme = ExtResource( 10 )
|
||||
text = "00"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue