summaryrefslogtreecommitdiff
path: root/godot/scenes/GameBase.tscn
blob: 1f09aa2d65fa4ab195aee65ab6f2aef7c88bd0e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[gd_scene load_steps=5 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]
[ext_resource path="res://scripts/cameras/PlayerCamGDS.gd" type="Script" id=4]

[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

[node name="PLAYERCAM" type="ClippedCamera" parent="."]
near = 0.01
far = 520.7
script = ExtResource( 4 )