diff options
author | nokoe <nokoe@mailbox.org> | 2024-07-28 17:41:50 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-07-28 17:44:01 +0200 |
commit | e2ba0525717fa02ffb3c21fc5edb6b75210e0443 (patch) | |
tree | 3bc9c4a44d7c8aa315b539c369e755f050d624b0 /client/map/tiles/ceiling_lamp.tscn | |
parent | dd298408f031b5db48f91679986e8a65aed41ad6 (diff) | |
download | hurrycurry-e2ba0525717fa02ffb3c21fc5edb6b75210e0443.tar hurrycurry-e2ba0525717fa02ffb3c21fc5edb6b75210e0443.tar.bz2 hurrycurry-e2ba0525717fa02ffb3c21fc5edb6b75210e0443.tar.zst |
lamps
Diffstat (limited to 'client/map/tiles/ceiling_lamp.tscn')
-rw-r--r-- | client/map/tiles/ceiling_lamp.tscn | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/client/map/tiles/ceiling_lamp.tscn b/client/map/tiles/ceiling_lamp.tscn new file mode 100644 index 00000000..899b8500 --- /dev/null +++ b/client/map/tiles/ceiling_lamp.tscn @@ -0,0 +1,16 @@ +[gd_scene load_steps=3 format=3 uid="uid://c8hu5h6dt0ixj"] + +[ext_resource type="ArrayMesh" uid="uid://bsir47jru4um7" path="res://map/tiles/ceiling_lamp.res" id="1_twi66"] +[ext_resource type="Script" path="res://map/tiles/light_tile.gd" id="1_yyibl"] + +[node name="CeilingLamp" type="Node3D" node_paths=PackedStringArray("lights")] +script = ExtResource("1_yyibl") +lights = [NodePath("OmniLight3D")] + +[node name="Mesh" type="MeshInstance3D" parent="."] +transform = Transform3D(100, 0, 0, 0, -1.19209e-05, 100, 0, -100, -1.19209e-05, 0, 1.875, 0) +mesh = ExtResource("1_twi66") +skeleton = NodePath("") + +[node name="OmniLight3D" type="OmniLight3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.4, 0) |