mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
25 lines
697 B
Plaintext
25 lines
697 B
Plaintext
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://sprites/sphere.png" type="Texture" id=1]
|
|
[ext_resource path="res://code/player.gd" type="Script" id=2]
|
|
|
|
[sub_resource type="CircleShape2D" id=1]
|
|
radius = 45.7813
|
|
|
|
[node name="player" type="KinematicBody2D"]
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="sphere" type="Sprite" parent="."]
|
|
texture = ExtResource( 1 )
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
shape = SubResource( 1 )
|
|
|
|
[node name="Tween" type="Tween" parent="."]
|
|
|
|
[node name="network_tick_rate" type="Timer" parent="."]
|
|
wait_time = 0.03
|
|
autostart = true
|
|
|
|
[connection signal="timeout" from="network_tick_rate" to="." method="_on_network_tick_rate_timeout"]
|