Browse Source

:art: Custom drawing for lines and point

DricomDragon 2 years ago
parent
commit
4064f9a4d3

+ 15 - 0
godot/component/entity/line/Line.gd

@@ -0,0 +1,15 @@
+extends Path2D
+
+
+const THICK = 10
+const RAYON = THICK / 2
+const MAIN_COLOR = Color8(255, 0, 0)
+
+
+func _draw():
+	draw_circle(curve.get_point_position(0), RAYON, MAIN_COLOR)
+	for k in range(curve.get_point_count() - 1):
+		var from = curve.get_point_position(k)
+		var target = curve.get_point_position(k + 1)
+		draw_line(from, target, MAIN_COLOR, THICK, true)
+		draw_circle(target, RAYON, MAIN_COLOR)

+ 5 - 0
godot/component/entity/star/Star.gd

@@ -3,7 +3,12 @@ extends PathFollow2D
 
 
 const SPEED = 200
+const RAYON = 20
+const MAIN_COLOR = Color8(252, 0, 20)
 
 
 func _physics_process(delta):
 	progress += SPEED * delta
+
+func _draw():
+	draw_circle(Vector2.ZERO, RAYON, MAIN_COLOR)

+ 1 - 5
godot/component/entity/star/Star.tscn

@@ -1,10 +1,6 @@
-[gd_scene load_steps=3 format=3 uid="uid://bs4hylgxwbr8y"]
+[gd_scene load_steps=2 format=3 uid="uid://bs4hylgxwbr8y"]
 
 [ext_resource type="Script" path="res://component/entity/star/Star.gd" id="1_bl1jp"]
-[ext_resource type="Texture2D" uid="uid://3msj63yh4l36" path="res://icon.svg" id="1_l4sa7"]
 
 [node name="Star" type="PathFollow2D"]
 script = ExtResource("1_bl1jp")
-
-[node name="Sprite2D" type="Sprite2D" parent="."]
-texture = ExtResource("1_l4sa7")

+ 3 - 1
godot/world.tscn

@@ -1,5 +1,6 @@
-[gd_scene load_steps=3 format=3 uid="uid://bs8crkburdpjc"]
+[gd_scene load_steps=4 format=3 uid="uid://bs8crkburdpjc"]
 
+[ext_resource type="Script" path="res://component/entity/line/Line.gd" id="1_8gyrh"]
 [ext_resource type="PackedScene" uid="uid://bs4hylgxwbr8y" path="res://component/entity/star/Star.tscn" id="1_wa4bn"]
 
 [sub_resource type="Curve2D" id="Curve2D_dtvs1"]
@@ -14,6 +15,7 @@ point_count = 6
 
 [node name="BassLine" type="Path2D" parent="Lines"]
 curve = SubResource("Curve2D_dtvs1")
+script = ExtResource("1_8gyrh")
 
 [node name="ProtoStar" parent="Lines/BassLine" instance=ExtResource("1_wa4bn")]
 position = Vector2(915, 227)