AhmedFebruary2025/ahmedgg/scenes/player.tscn

40 lines
1.2 KiB
Plaintext

[gd_scene load_steps=4 format=3 uid="uid://b0d1gs2knc2l8"]
[ext_resource type="Script" path="res://scripts/Player.gd" id="1_rdo8w"]
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_wfabo"]
[sub_resource type="GDScript" id="GDScript_46ryu"]
script/source = "extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
"
[node name="CharacterBody2D" type="CharacterBody2D"]
script = ExtResource("1_rdo8w")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CapsuleShape2D_wfabo")
debug_color = Color(0.416871, 0.601139, 0.192736, 0.42)
[node name="right_RayCast2D" type="RayCast2D" parent="."]
target_position = Vector2(27, 0)
[node name="left_RayCast2D" type="RayCast2D" parent="."]
target_position = Vector2(-27, 0)
[node name="rightTarget_Node2D" type="Node2D" parent="."]
position = Vector2(21, -20)
[node name="leftTarget_Node2D" type="Node2D" parent="."]
position = Vector2(15, -20)
script = SubResource("GDScript_46ryu")