mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-16 05:20:06 +01:00
30 lines
831 B
Plaintext
30 lines
831 B
Plaintext
[gd_scene load_steps=4 format=3 uid="uid://gitl0uy3c3dn"]
|
|
|
|
[ext_resource type="Script" uid="uid://dckbr1ao054cd" path="res://logic/Paddle.cs" id="1"]
|
|
[ext_resource type="Texture2D" uid="uid://5jnemlg23vp7" path="res://paddle.png" id="2"]
|
|
|
|
[sub_resource type="CapsuleShape2D" id="1"]
|
|
radius = 4.78568
|
|
height = 23.6064
|
|
|
|
[node name="Paddle" type="Area2D"]
|
|
script = ExtResource("1")
|
|
|
|
[node name="Sprite2D" type="Sprite2D" parent="."]
|
|
texture = ExtResource("2")
|
|
|
|
[node name="Shape3D" type="CollisionShape2D" parent="."]
|
|
shape = SubResource("1")
|
|
|
|
[node name="You" type="Label" parent="."]
|
|
offset_left = -26.0
|
|
offset_top = -33.0
|
|
offset_right = 27.0
|
|
offset_bottom = -19.0
|
|
size_flags_horizontal = 2
|
|
size_flags_vertical = 0
|
|
text = "You"
|
|
horizontal_alignment = 1
|
|
|
|
[connection signal="area_entered" from="." to="." method="OnPaddleAreaEnter"]
|