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.
30 lines
1.2 KiB
30 lines
1.2 KiB
[gd_scene load_steps=6 format=2]
|
|
|
|
[ext_resource path="res://scripts/game/world.gd" type="Script" id=1]
|
|
[ext_resource path="res://scripts/game/route.gd" type="Script" id=2]
|
|
[ext_resource path="res://scripts/game/preview.gd" type="Script" id=3]
|
|
[ext_resource path="res://scenes/player/inventory.tscn" type="PackedScene" id=4]
|
|
[ext_resource path="res://scripts/player/inventory.gd" type="Script" id=5]
|
|
|
|
[node name="world" type="Spatial"]
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="route" type="Spatial" parent="."]
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="preview" type="Spatial" parent="."]
|
|
script = ExtResource( 3 )
|
|
|
|
[node name="inventory" parent="." instance=ExtResource( 4 )]
|
|
script = ExtResource( 5 )
|
|
|
|
[node name="players" type="Spatial" parent="."]
|
|
|
|
[node name="sun" type="DirectionalLight" parent="."]
|
|
transform = Transform( 0.324827, 0.775291, 0.541675, -0.754407, -0.133022, 0.642788, 0.570402, -0.617438, 0.541675, 0, 100, 0 )
|
|
visible = false
|
|
light_energy = 5.0
|
|
directional_shadow_mode = 1
|
|
directional_shadow_max_distance = 25.0
|
|
[connection signal="road_added" from="route" to="preview" method="_on_route_road_added"]
|
|
[connection signal="item_changed" from="inventory" to="preview" method="_on_inventory_item_changed"]
|