2020-10-03 16:46:14 +00:00
|
|
|
[gd_scene load_steps=4 format=2]
|
2020-10-03 01:20:01 +00:00
|
|
|
|
|
|
|
[ext_resource path="res://Sprites/placeholder_cat.jpg" type="Texture" id=1]
|
2020-10-03 16:46:14 +00:00
|
|
|
[ext_resource path="res://Scripts/Player.gd" type="Script" id=2]
|
2020-10-03 01:20:01 +00:00
|
|
|
|
|
|
|
[sub_resource type="RectangleShape2D" id=1]
|
|
|
|
extents = Vector2( 22.5, 22.5 )
|
|
|
|
|
|
|
|
[node name="Player" type="KinematicBody2D"]
|
|
|
|
collision_layer = 2
|
2020-10-03 16:46:14 +00:00
|
|
|
script = ExtResource( 2 )
|
|
|
|
gravity = Vector2( 0, 10 )
|
|
|
|
move_speed = 300.0
|
|
|
|
jump_speed = 500.0
|
|
|
|
jump_buffer_msec = 64.0
|
2020-10-03 01:20:01 +00:00
|
|
|
|
|
|
|
[node name="Sprite" type="Sprite" parent="."]
|
|
|
|
scale = Vector2( 0.25, 0.25 )
|
|
|
|
texture = ExtResource( 1 )
|
|
|
|
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
|
|
shape = SubResource( 1 )
|