-
Notifications
You must be signed in to change notification settings - Fork 0
/
dragNdrop.tscn
35 lines (27 loc) · 1.15 KB
/
dragNdrop.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
31
32
33
34
35
[gd_scene load_steps=6 format=2]
[ext_resource path="res://dragNdrop.gd" type="Script" id=1]
[ext_resource path="res://colorPalette/box_circle.png" type="Texture" id=2]
[ext_resource path="res://colorPalette/box_background_stop_1.png" type="Texture" id=3]
[ext_resource path="res://colorPalette/X.png" type="Texture" id=4]
[sub_resource type="CircleShape2D" id=1]
radius = 488.045
[node name="Node2D" type="Node2D"]
script = ExtResource( 1 )
[node name="pobrane" type="Sprite" parent="."]
modulate = Color( 0.560784, 0.776471, 0.878431, 1 )
scale = Vector2( 0.09, 0.09 )
texture = ExtResource( 2 )
[node name="Area2D" type="Area2D" parent="pobrane"]
[node name="CollisionShape2D" type="CollisionShape2D" parent="pobrane/Area2D"]
shape = SubResource( 1 )
one_way_collision_margin = 0.0
[node name="onPaused" type="Sprite" parent="."]
visible = false
scale = Vector2( 0.09, 0.09 )
texture = ExtResource( 3 )
[node name="onFailed" type="Sprite" parent="."]
visible = false
modulate = Color( 0.227451, 0.188235, 0.176471, 1 )
scale = Vector2( 0.09, 0.09 )
texture = ExtResource( 4 )
[connection signal="input_event" from="pobrane/Area2D" to="." method="_on_Area2D_input_event"]