diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2022-08-31 00:26:34 -0700 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2022-08-31 00:26:34 -0700 |
| commit | d3998186c9795f2a85148cd5bcfa1bd5b6226cfb (patch) | |
| tree | ba5cae524562818ee38da48dd09b0b42a733e1d8 /scenes/GameBase.tscn | |
Initialize repo
Diffstat (limited to 'scenes/GameBase.tscn')
| -rw-r--r-- | scenes/GameBase.tscn | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/scenes/GameBase.tscn b/scenes/GameBase.tscn new file mode 100644 index 0000000..6725a55 --- /dev/null +++ b/scenes/GameBase.tscn @@ -0,0 +1,25 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://scenes/environment/Water.tscn" type="PackedScene" id=1] +[ext_resource path="res://ui/HUD.tscn" type="PackedScene" id=2] +[ext_resource path="res://scripts/GameBase.gd" type="Script" id=3] + +[node name="GAMEWORLD" type="Spatial"] +script = ExtResource( 3 ) + +[node name="Water" parent="." instance=ExtResource( 1 )] +transform = Transform( 6000, 0, 0, 0, 15, 0, 0, 0, 6000, 0, 0, 0 ) + +[node name="WORLDGEO" type="Spatial" parent="."] + +[node name="MACHINES" type="Spatial" parent="."] + +[node name="BALLISTICS" type="Spatial" parent="."] + +[node name="PLAYERS" type="Spatial" parent="."] + +[node name="HUD" parent="." instance=ExtResource( 2 )] + +[node name="DEFAULTCAM" type="Camera" parent="."] +current = true +far = 8192.0 |
