Tutorial level

This commit is contained in:
2022-08-04 17:56:22 -06:00
parent 417044bfda
commit 88bc593642
13 changed files with 754 additions and 125 deletions
+16
View File
@@ -0,0 +1,16 @@
extends Sprite
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass
+19
View File
@@ -0,0 +1,19 @@
extends Node2D
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
onready var bush1 = $Bush1/Sprite
onready var bush2 = $Bush4/Sprite
# Called when the node enters the scene tree for the first time.
func _ready():
bush1.set_modulate(Color(0.75, 0.75, 0.75))
bush2.set_modulate(Color(0.75, 0.75, 0.75))
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass