浏览代码

:art: Show overlap by using modulate

DricomDragon 9 月之前
父节点
当前提交
11b531e039
共有 4 个文件被更改,包括 31 次插入12 次删除
  1. 6 8
      areaForStatic/overlap.gd
  2. 17 0
      areaForStatic/static_object.gd
  3. 3 2
      areaForStatic/static_object.tscn
  4. 5 2
      areaForStatic/world.tscn

+ 6 - 8
areaForStatic/overlap.gd

@@ -1,14 +1,11 @@
 extends Area2D
 
 
-# Called when the node enters the scene tree for the first time.
-func _ready():
-	pass # Replace with function body.
-
-
-# Called every frame. 'delta' is the elapsed time since the previous frame.
 func _process(delta):
-	pass
+	var bodies: Array[Node2D] = get_overlapping_bodies()
+	for body in bodies:
+		print(body.get_name(), " is overlapping with me")
+		body.paint()
 
 
 func _unhandled_input(event: InputEvent) -> void:
@@ -18,4 +15,5 @@ func _unhandled_input(event: InputEvent) -> void:
 
 
 func _on_body_entered(body: Node2D) -> void:
-	print(body.get_name(), " overlaps with me")
+	print(body.get_name(), " entered in my area")
+	body.paint()

+ 17 - 0
areaForStatic/static_object.gd

@@ -0,0 +1,17 @@
+extends StaticBody2D
+
+
+var should_clean := false # offset of one frame (or two)
+
+
+func _process(delta):
+	if should_clean:
+		set_modulate(Color.WHITE)
+		should_clean = false
+	elif get_modulate() != Color.WHITE:
+		should_clean = true
+
+
+func paint() -> void:
+	set_modulate(Color.HOT_PINK)
+	should_clean = false

+ 3 - 2
areaForStatic/static_object.tscn

@@ -1,13 +1,14 @@
-[gd_scene load_steps=3 format=3 uid="uid://c51bams63yrds"]
+[gd_scene load_steps=4 format=3 uid="uid://c51bams63yrds"]
 
 [ext_resource type="Shape2D" uid="uid://dr8p5aiw65e15" path="res://godot_shape.tres" id="1_4pry8"]
+[ext_resource type="Script" path="res://static_object.gd" id="1_41t72"]
 [ext_resource type="Texture2D" uid="uid://20ldjesg1ht3" path="res://icon.svg" id="2_rwfng"]
 
 [node name="StaticBody2D" type="StaticBody2D"]
+script = ExtResource("1_41t72")
 
 [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
 shape = ExtResource("1_4pry8")
 
 [node name="Sprite2D" type="Sprite2D" parent="."]
-modulate = Color(1, 0.235294, 1, 1)
 texture = ExtResource("2_rwfng")

+ 5 - 2
areaForStatic/world.tscn

@@ -14,9 +14,12 @@ point_count = 6
 
 [node name="World" type="Node2D"]
 
-[node name="NotMovingStaticBody2D" parent="." instance=ExtResource("1_i6y7f")]
+[node name="NotMovingAlpha" parent="." instance=ExtResource("1_i6y7f")]
 position = Vector2(747, 383)
 
+[node name="NotMovingBeta" parent="." instance=ExtResource("1_i6y7f")]
+position = Vector2(253, 477)
+
 [node name="Area2D" type="Area2D" parent="."]
 position = Vector2(306, 257)
 script = ExtResource("3_1y6lv")
@@ -36,6 +39,6 @@ rotation = 0.047002
 progress = 318.91
 script = ExtResource("5_yo3el")
 
-[node name="StaticBody2D" parent="Path2D/PathFollow2D" instance=ExtResource("1_i6y7f")]
+[node name="MovingOne" parent="Path2D/PathFollow2D" instance=ExtResource("1_i6y7f")]
 
 [connection signal="body_entered" from="Area2D" to="Area2D" method="_on_body_entered"]