Setting vs code editor and testing

This commit is contained in:
Dan Baker 2024-05-02 09:45:03 +01:00
parent 4522259397
commit 2099f0b1ff
4 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,11 @@
extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready():
Log.pr("Hello there...")
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass

View file

@ -1,3 +1,6 @@
[gd_scene format=3 uid="uid://mk5n0hrwk4yi"]
[gd_scene load_steps=2 format=3 uid="uid://mk5n0hrwk4yi"]
[ext_resource type="Script" path="res://scenes/scripts/test_level.gd" id="1_lgt1m"]
[node name="TestLevel" type="Node2D"]
script = ExtResource("1_lgt1m")