-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNode2D.tscn
29 lines (22 loc) · 877 Bytes
/
Node2D.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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://grass.png" type="Texture" id=1]
[ext_resource path="res://Generation.gd" type="Script" id=2]
[ext_resource path="res://cam.gd" type="Script" id=3]
[ext_resource path="res://dirt.png" type="Texture" id=4]
[node name="Node2D" type="Node2D"]
[node name="KinematicBody2D" type="KinematicBody2D" parent="."]
script = ExtResource( 2 )
[node name="Grass" type="Sprite" parent="KinematicBody2D"]
visible = false
texture = ExtResource( 1 )
[node name="cam" type="KinematicBody2D" parent="KinematicBody2D"]
script = ExtResource( 3 )
[node name="Camera2D" type="Camera2D" parent="KinematicBody2D/cam"]
current = true
zoom = Vector2( 0.2, 0.2 )
smoothing_enabled = true
smoothing_speed = 3.0
[node name="Dirt" type="Sprite" parent="KinematicBody2D"]
visible = false
position = Vector2( -26, 27 )
texture = ExtResource( 4 )