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
36
37
38
39
40
|
[gd_scene load_steps=6 format=2]
[ext_resource path="res://assets/idle_devs.tres" type="Texture" id=1]
[ext_resource path="res://assets/pitchfork.png" type="Texture" id=2]
[ext_resource path="res://riot/angrydev.gd" type="Script" id=3]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 51.2919, 129.884 )
[sub_resource type="RectangleShape2D" id=2]
extents = Vector2( 7.55417, 60.9855 )
[node name="Node2D" type="Node2D"]
position = Vector2( -24.1174, 33.1615 )
script = ExtResource( 3 )
[node name="body" type="Sprite" parent="."]
position = Vector2( 43.416, -38.1387 )
texture = ExtResource( 1 )
[node name="Area2D" type="KinematicBody2D" parent="body"]
[node name="CollisionShape2D" type="CollisionShape2D" parent="body/Area2D"]
position = Vector2( -25.8545, 4.94695 )
shape = SubResource( 1 )
[node name="pitchfork" type="Sprite" parent="."]
position = Vector2( 59.0399, -57.764 )
scale = Vector2( 2, 2 )
texture = ExtResource( 2 )
offset = Vector2( 0.330124, -33.3885 )
[node name="Area2D" type="KinematicBody2D" parent="pitchfork"]
[node name="CollisionShape2D" type="CollisionShape2D" parent="pitchfork/Area2D"]
position = Vector2( -2.64741, -20.3548 )
shape = SubResource( 2 )
[node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="pitchfork/Area2D"]
polygon = PoolVector2Array( 24.3382, -93.3693, 23.4129, -57.2823, -11.7488, -40.6268, -21.9271, -61.9088 )
|