21 lines
709 B
Text
21 lines
709 B
Text
|
[gd_scene load_steps=4 format=3 uid="uid://cfnmiqovwwhry"]
|
||
|
|
||
|
[ext_resource type="Script" path="res://scripts/player_movement.gd" id="1_otvu6"]
|
||
|
[ext_resource type="Texture2D" uid="uid://b6gxkpy33b88g" path="res://temp_assets/player.png" id="2_d4ig1"]
|
||
|
|
||
|
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_jqi2f"]
|
||
|
radius = 17.0
|
||
|
height = 42.0
|
||
|
|
||
|
[node name="Player" type="Node2D"]
|
||
|
|
||
|
[node name="CharacterBody2D" type="CharacterBody2D" parent="."]
|
||
|
script = ExtResource("1_otvu6")
|
||
|
speed = 340
|
||
|
|
||
|
[node name="Sprite2D" type="Sprite2D" parent="CharacterBody2D"]
|
||
|
texture = ExtResource("2_d4ig1")
|
||
|
|
||
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"]
|
||
|
shape = SubResource("CapsuleShape2D_jqi2f")
|