From d3998186c9795f2a85148cd5bcfa1bd5b6226cfb Mon Sep 17 00:00:00 2001 From: Anson Bridges Date: Wed, 31 Aug 2022 00:26:34 -0700 Subject: Initialize repo --- scenes/GameBase.tscn | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 scenes/GameBase.tscn (limited to 'scenes/GameBase.tscn') 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 -- cgit v1.2.3