-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorb_yellow.tscn
32 lines (24 loc) · 1 KB
/
orb_yellow.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
[gd_scene load_steps=5 format=3 uid="uid://bujke4yoedx38"]
[ext_resource type="Script" uid="uid://oys6urif0wm1" path="res://orb.gd" id="1_ogqpy"]
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_vlbxy"]
particle_flag_disable_z = true
emission_shape = 1
emission_sphere_radius = 50.0
gravity = Vector3(0, 0, 0)
scale_min = 10.0
scale_max = 20.0
color = Color(1, 1, 0, 0.403922)
[sub_resource type="CircleShape2D" id="CircleShape2D_f80ry"]
radius = 50.0
[sub_resource type="SphereMesh" id="SphereMesh_f80ry"]
radius = 50.0
height = 100.0
[node name="Orb" type="Area2D"]
script = ExtResource("1_ogqpy")
particle_process_material = SubResource("ParticleProcessMaterial_vlbxy")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_f80ry")
[node name="MeshInstance2D" type="MeshInstance2D" parent="."]
modulate = Color(1, 1, 0, 0.403922)
mesh = SubResource("SphereMesh_f80ry")
[connection signal="body_entered" from="." to="." method="_on_body_entered"]