diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2022-09-07 14:07:30 -0400 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2022-09-07 14:07:30 -0400 |
| commit | c232b92e2dde1277324d1f89d0e75ae641e4ac3b (patch) | |
| tree | e11a5dd52f259c1cc7345baa40b372b304417f00 /godot/scenes/GameBase.tscn | |
| parent | a0967ebe815cd229b69fb9578f2288b95b2ddb28 (diff) | |
reorganized, ladders, vehicle control
Diffstat (limited to 'godot/scenes/GameBase.tscn')
| -rw-r--r-- | godot/scenes/GameBase.tscn | 25 |
1 files changed, 25 insertions, 0 deletions
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 |
