player.tscn: scholar of the first bullet casings

This commit is contained in:
Haze Weathers 2023-05-08 01:00:38 -04:00
parent 79cbd62a69
commit bc57ba4171
45 changed files with 1429 additions and 113 deletions

View file

@ -1,4 +1,5 @@
extends Node2D
onready var left_snap = $LeftSnap
onready var right_snap = $RightSnap
onready var middle = position.x + 4
extends Area2D
onready var left_snap: float = $LeftSnap.global_position.x
onready var right_snap: float = $RightSnap.global_position.x
onready var middle: float = global_position.x + 4.0

View file

@ -5,13 +5,11 @@
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 6, 4 )
[node name="Ladder" type="Node2D"]
[node name="Ladder" type="Area2D" groups=["ladder"]]
collision_layer = 64
script = ExtResource( 1 )
[node name="Area2D" type="Area2D" parent="."]
collision_layer = 64
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2( 4, 4 )
shape = SubResource( 1 )