-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSelectedTile.tscn
30 lines (24 loc) · 1.02 KB
/
SelectedTile.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[gd_scene load_steps=7 format=2]
[ext_resource path="res://sprites/selected_tile.png" type="Texture" id=1]
[ext_resource path="res://scripts/SelectedTile.gd" type="Script" id=2]
[ext_resource path="res://audio/water_plant.wav" type="AudioStream" id=3]
[ext_resource path="res://audio/plant_sell.wav" type="AudioStream" id=4]
[ext_resource path="res://audio/till_plant.wav" type="AudioStream" id=5]
[ext_resource path="res://audio/plant.wav" type="AudioStream" id=6]
[node name="SelectedTile" type="Sprite"]
z_index = 1
texture = ExtResource( 1 )
centered = false
script = ExtResource( 2 )
[node name="WaterAudioPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 3 )
bus = "SoundEffects"
[node name="SellAudioPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 4 )
bus = "SoundEffects"
[node name="TillAudioPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 5 )
bus = "SoundEffects"
[node name="PlantAudioPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 6 )
bus = "SoundEffects"