Kaynağa Gözat

:tada: Show that moving static bodies don't trigger signal on area

DricomDragon 9 ay önce
ebeveyn
işleme
e75763fd66

+ 2 - 0
areaForStatic/.gitattributes

@@ -0,0 +1,2 @@
+# Normalize EOL for all files that Git considers text files.
+* text=auto eol=lf

+ 2 - 0
areaForStatic/.gitignore

@@ -0,0 +1,2 @@
+# Godot 4+ specific ignores
+.godot/

+ 4 - 0
areaForStatic/godot_shape.tres

@@ -0,0 +1,4 @@
+[gd_resource type="RectangleShape2D" format=3 uid="uid://dr8p5aiw65e15"]
+
+[resource]
+size = Vector2(126, 126)

Dosya farkı çok büyük olduğundan ihmal edildi
+ 1 - 0
areaForStatic/icon.svg


+ 37 - 0
areaForStatic/icon.svg.import

@@ -0,0 +1,37 @@
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://20ldjesg1ht3"
+path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://icon.svg"
+dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
+svg/scale=1.0
+editor/scale_with_editor_scale=false
+editor/convert_colors_with_editor_theme=false

+ 8 - 0
areaForStatic/incrementer.gd

@@ -0,0 +1,8 @@
+extends PathFollow2D
+
+
+const vitesse = 200 # px/sec
+
+
+func _process(delta: float) -> void:
+	progress += vitesse * delta

+ 21 - 0
areaForStatic/overlap.gd

@@ -0,0 +1,21 @@
+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
+
+
+func _unhandled_input(event: InputEvent) -> void:
+	if event is InputEventMouseMotion:
+		var mouseMotion = event as InputEventMouseMotion
+		position = mouseMotion.position
+
+
+func _on_body_entered(body: Node2D) -> void:
+	print(body.get_name(), " overlaps with me")

+ 16 - 0
areaForStatic/project.godot

@@ -0,0 +1,16 @@
+; Engine configuration file.
+; It's best edited using the editor UI and not directly,
+; since the parameters that go here are not all obvious.
+;
+; Format:
+;   [section] ; section goes between []
+;   param=value ; assign values to parameters
+
+config_version=5
+
+[application]
+
+config/name="AreaForStatic"
+run/main_scene="res://world.tscn"
+config/features=PackedStringArray("4.2", "Forward Plus")
+config/icon="res://icon.svg"

+ 13 - 0
areaForStatic/static_object.tscn

@@ -0,0 +1,13 @@
+[gd_scene load_steps=3 format=3 uid="uid://c51bams63yrds"]
+
+[ext_resource type="Shape2D" uid="uid://dr8p5aiw65e15" path="res://godot_shape.tres" id="1_4pry8"]
+[ext_resource type="Texture2D" uid="uid://20ldjesg1ht3" path="res://icon.svg" id="2_rwfng"]
+
+[node name="StaticBody2D" type="StaticBody2D"]
+
+[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")

+ 41 - 0
areaForStatic/world.tscn

@@ -0,0 +1,41 @@
+[gd_scene load_steps=7 format=3 uid="uid://d4fhtfjhdgv8p"]
+
+[ext_resource type="Texture2D" uid="uid://20ldjesg1ht3" path="res://icon.svg" id="1_4r6tq"]
+[ext_resource type="PackedScene" uid="uid://c51bams63yrds" path="res://static_object.tscn" id="1_i6y7f"]
+[ext_resource type="Shape2D" uid="uid://dr8p5aiw65e15" path="res://godot_shape.tres" id="1_nsm8u"]
+[ext_resource type="Script" path="res://overlap.gd" id="3_1y6lv"]
+[ext_resource type="Script" path="res://incrementer.gd" id="5_yo3el"]
+
+[sub_resource type="Curve2D" id="Curve2D_migqo"]
+_data = {
+"points": PackedVector2Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1063, 50, 0, 0, 0, 0, 1014, 420, 0, 0, 0, 0, 987, 622, 0, 0, 0, 0, 45, 615, 0, 0, 0, 0, 59, 80)
+}
+point_count = 6
+
+[node name="World" type="Node2D"]
+
+[node name="NotMovingStaticBody2D" parent="." instance=ExtResource("1_i6y7f")]
+position = Vector2(747, 383)
+
+[node name="Area2D" type="Area2D" parent="."]
+position = Vector2(306, 257)
+script = ExtResource("3_1y6lv")
+
+[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
+shape = ExtResource("1_nsm8u")
+
+[node name="Sprite2D" type="Sprite2D" parent="Area2D"]
+texture = ExtResource("1_4r6tq")
+
+[node name="Path2D" type="Path2D" parent="."]
+curve = SubResource("Curve2D_migqo")
+
+[node name="PathFollow2D" type="PathFollow2D" parent="Path2D"]
+position = Vector2(318.557, 14.9839)
+rotation = 0.047002
+progress = 318.91
+script = ExtResource("5_yo3el")
+
+[node name="StaticBody2D" parent="Path2D/PathFollow2D" instance=ExtResource("1_i6y7f")]
+
+[connection signal="body_entered" from="Area2D" to="Area2D" method="_on_body_entered"]