123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- [gd_scene load_steps=4 format=2]
- [ext_resource path="res://Player.gd" type="Script" id=1]
- [ext_resource path="res://player.png" type="Texture" id=2]
- [sub_resource type="RectangleShape2D" id=1]
- extents = Vector2( 16, 16 )
- [node name="Player" type="Area2D"]
- position = Vector2( 544, 224 )
- script = ExtResource( 1 )
- rayU = NodePath("RayUp")
- rayD = NodePath("RayDown")
- rayL = NodePath("RayLeft")
- rayR = NodePath("RayRight")
- [node name="Sprite" type="Sprite" parent="."]
- texture = ExtResource( 2 )
- __meta__ = {
- "_edit_lock_": true
- }
- [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
- shape = SubResource( 1 )
- __meta__ = {
- "_edit_lock_": true
- }
- [node name="RayUp" type="RayCast2D" parent="."]
- position = Vector2( 0, -30 )
- enabled = true
- exclude_parent = false
- cast_to = Vector2( 0, -32 )
- __meta__ = {
- "_edit_lock_": true
- }
- [node name="RayDown" type="RayCast2D" parent="."]
- position = Vector2( 0, 30 )
- enabled = true
- exclude_parent = false
- cast_to = Vector2( 0, 32 )
- __meta__ = {
- "_edit_lock_": true
- }
- [node name="RayLeft" type="RayCast2D" parent="."]
- position = Vector2( -30, 0 )
- enabled = true
- exclude_parent = false
- cast_to = Vector2( -32, 0 )
- __meta__ = {
- "_edit_lock_": true
- }
- [node name="RayRight" type="RayCast2D" parent="."]
- position = Vector2( 30, 0 )
- enabled = true
- exclude_parent = false
- cast_to = Vector2( 32, 0 )
- __meta__ = {
- "_edit_lock_": true
- }
|