You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
657 B
25 lines
657 B
[gd_scene load_steps=5 format=2] |
|
|
|
[ext_resource path="res://Camera.cs" type="Script" id=1] |
|
[ext_resource path="res://gfx/player.png" type="Texture" id=2] |
|
[ext_resource path="res://Player.cs" type="Script" id=3] |
|
|
|
[sub_resource type="CircleShape2D" id=1] |
|
radius = 8.0 |
|
|
|
[node name="Player" type="KinematicBody2D"] |
|
position = Vector2( 640, 360 ) |
|
script = ExtResource( 3 ) |
|
__meta__ = { |
|
"_edit_group_": true |
|
} |
|
|
|
[node name="Camera2D" type="Camera2D" parent="."] |
|
current = true |
|
script = ExtResource( 1 ) |
|
|
|
[node name="CircleShape" type="CollisionShape2D" parent="."] |
|
shape = SubResource( 1 ) |
|
|
|
[node name="Sprite" type="Sprite" parent="."] |
|
texture = ExtResource( 2 )
|
|
|