-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPlayer.tscn
More file actions
28 lines (20 loc) · 945 Bytes
/
Copy pathPlayer.tscn
File metadata and controls
28 lines (20 loc) · 945 Bytes
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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://Sprites/Player_Idle.png" type="Texture" id=1]
[ext_resource path="res://Player.gd" type="Script" id=2]
[ext_resource path="res://Audio/Intro Theme.wav" type="AudioStream" id=3]
[ext_resource path="res://Audio/Foot Steps.wav" type="AudioStream" id=4]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 33.6913, 33.7383 )
[node name="Player" type="KinematicBody2D"]
script = ExtResource( 2 )
[node name="AudioEffect" type="Node" parent="."]
[node name="BackgroundScorePlayer" type="AudioStreamPlayer2D" parent="AudioEffect"]
stream = ExtResource( 3 )
autoplay = true
[node name="FootStepsAudioPlayer" type="AudioStreamPlayer2D" parent="AudioEffect"]
stream = ExtResource( 4 )
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2( 0, 15 )
shape = SubResource( 1 )