From c232b92e2dde1277324d1f89d0e75ae641e4ac3b Mon Sep 17 00:00:00 2001 From: Anson Bridges Date: Wed, 7 Sep 2022 14:07:30 -0400 Subject: reorganized, ladders, vehicle control --- godot/scenes/GameBase.tscn | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 godot/scenes/GameBase.tscn (limited to 'godot/scenes/GameBase.tscn') diff --git a/godot/scenes/GameBase.tscn b/godot/scenes/GameBase.tscn new file mode 100644 index 0000000..eaa6c86 --- /dev/null +++ b/godot/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, 100, 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