23 lines
708 B
Text
23 lines
708 B
Text
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://graphics/particles/famira_blood.png" type="Texture" id=1]
|
|
[ext_resource path="res://objects/environment/blood/blood_spray_big.gd" type="Script" id=2]
|
|
|
|
[sub_resource type="CircleShape2D" id=1]
|
|
radius = 0.5
|
|
|
|
[node name="BloodSpray" type="Area2D"]
|
|
collision_mask = 129
|
|
script = ExtResource( 2 )
|
|
color = Color( 0.701961, 0.745098, 0.4, 1 )
|
|
|
|
[node name="Sprite" type="Sprite" parent="."]
|
|
scale = Vector2( 0.75, 0.5 )
|
|
texture = ExtResource( 1 )
|
|
offset = Vector2( 2, 0 )
|
|
flip_h = true
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
shape = SubResource( 1 )
|
|
|
|
[connection signal="body_entered" from="." to="." method="_on_body_entered"]
|