-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLevel.tscn
26 lines (20 loc) · 831 Bytes
/
Level.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
[gd_scene load_steps=6 format=2]
[ext_resource path="res://Level.gd" type="Script" id=1]
[ext_resource path="res://images/forest1.jpg" type="Texture" id=2]
[ext_resource path="res://arrow.tscn" type="PackedScene" id=3]
[ext_resource path="res://player.gd" type="Script" id=4]
[ext_resource path="res://bow.tscn" type="PackedScene" id=5]
[node name="Level" type="Node2D"]
script = ExtResource( 1 )
[node name="fondo" type="TextureRect" parent="."]
margin_right = 2048.0
margin_bottom = 1536.0
rect_scale = Vector2( 0.5, 0.5 )
texture = ExtResource( 2 )
[node name="player" type="Node2D" parent="."]
position = Vector2( 512, 550 )
script = ExtResource( 4 )
[node name="bow" parent="player" instance=ExtResource( 5 )]
rotation = -1.5708
[node name="arrow" parent="player" instance=ExtResource( 3 )]
position = Vector2( 0, -20 )