begin work on room scene
This commit is contained in:
parent
0242623476
commit
d49752c98a
3 changed files with 16 additions and 0 deletions
9
scenes/room/room.gd
Normal file
9
scenes/room/room.gd
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
class_name Room extends Node2D
|
||||
|
||||
|
||||
@export var room_config: RoomConfig
|
||||
|
||||
var player_scene: PackedScene = preload("res://scenes/player/player.tscn")
|
||||
|
||||
var player: Player
|
||||
var intial_spawn: Vector2i
|
||||
1
scenes/room/room.gd.uid
Normal file
1
scenes/room/room.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://pcl0om2k32g6
|
||||
6
scenes/room/room.tscn
Normal file
6
scenes/room/room.tscn
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[gd_scene load_steps=2 format=3 uid="uid://bxhyxox662buj"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://pcl0om2k32g6" path="res://scenes/room/room.gd" id="1_8xru0"]
|
||||
|
||||
[node name="Room" type="Node2D"]
|
||||
script = ExtResource("1_8xru0")
|
||||
Loading…
Add table
Reference in a new issue