conforms file names to consistant standard
This commit is contained in:
31
ui/damage_particle/damage_particle.gd
Normal file
31
ui/damage_particle/damage_particle.gd
Normal file
@@ -0,0 +1,31 @@
|
||||
class_name DamageParticle
|
||||
extends Sprite3D
|
||||
|
||||
@export var label: Label
|
||||
var time_alive: float = 0.0
|
||||
var movement_speed: float = 1.0
|
||||
var movement_vector: Vector3
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
var theta: float = deg_to_rad(40)
|
||||
var z: float = randf_range(cos(theta), 1)
|
||||
var phi: float = randf_range(0, 2 * PI)
|
||||
var vector: Vector3 = Vector3(sqrt(1 - pow(z, 2)) * cos(phi), z, sqrt(1 - pow(z, 2)) * sin(phi))
|
||||
movement_vector = vector.normalized()
|
||||
visible = true
|
||||
|
||||
|
||||
func set_number(num: int) -> void:
|
||||
label.text = str(num)
|
||||
|
||||
|
||||
func set_color(color: Color) -> void:
|
||||
label.modulate = color
|
||||
|
||||
|
||||
func _process(delta: float) -> void:
|
||||
time_alive += delta
|
||||
position += movement_vector * movement_speed * delta
|
||||
if time_alive >= 1.0:
|
||||
queue_free()
|
||||
1
ui/damage_particle/damage_particle.gd.uid
Normal file
1
ui/damage_particle/damage_particle.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://blt7umrgo3tfh
|
||||
35
ui/damage_particle/damage_particle.tscn
Normal file
35
ui/damage_particle/damage_particle.tscn
Normal file
@@ -0,0 +1,35 @@
|
||||
[gd_scene format=3 uid="uid://cqtew0t8sttpm"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://blt7umrgo3tfh" path="res://ui/damage_particle/damage_particle.gd" id="1_lgvaq"]
|
||||
|
||||
[sub_resource type="ViewportTexture" id="ViewportTexture_fiibr"]
|
||||
viewport_path = NodePath("SubViewport")
|
||||
|
||||
[node name="Node3D" type="Sprite3D" unique_id=1014123125 node_paths=PackedStringArray("label")]
|
||||
visible = false
|
||||
pixel_size = 0.005
|
||||
billboard = 1
|
||||
no_depth_test = true
|
||||
fixed_size = true
|
||||
alpha_cut = 1
|
||||
texture_filter = 2
|
||||
render_priority = 1
|
||||
texture = SubResource("ViewportTexture_fiibr")
|
||||
script = ExtResource("1_lgvaq")
|
||||
label = NodePath("SubViewport/Label")
|
||||
|
||||
[node name="SubViewport" type="SubViewport" parent="." unique_id=1770696222]
|
||||
transparent_bg = true
|
||||
size = Vector2i(37, 21)
|
||||
render_target_update_mode = 1
|
||||
|
||||
[node name="Label" type="Label" parent="SubViewport" unique_id=1905792669]
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
theme_type_variation = &"DamageNumLabel"
|
||||
text = "12345"
|
||||
horizontal_alignment = 1
|
||||
vertical_alignment = 1
|
||||
Reference in New Issue
Block a user