first commit
This commit is contained in:
13
scenes/stages/MenuManager.tscn
Normal file
13
scenes/stages/MenuManager.tscn
Normal file
@ -0,0 +1,13 @@
|
||||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://resources/user_interface/default_theme.tres" type="Theme" id=1]
|
||||
[ext_resource path="res://scenes/stages/menus/MenuMain.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scripts/stages/MenuManager.cs" type="Script" id=3]
|
||||
|
||||
[node name="MenuManager" type="Control"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
theme = ExtResource( 1 )
|
||||
script = ExtResource( 3 )
|
||||
|
||||
[node name="MenuMain" parent="." instance=ExtResource( 2 )]
|
127
scenes/stages/PlayerBall.tscn
Normal file
127
scenes/stages/PlayerBall.tscn
Normal file
File diff suppressed because one or more lines are too long
6
scenes/stages/ShadowBallManager.tscn
Normal file
6
scenes/stages/ShadowBallManager.tscn
Normal file
@ -0,0 +1,6 @@
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://scripts/stages/ShadowBallManager.cs" type="Script" id=1]
|
||||
|
||||
[node name="ShadowBallManager" type="Spatial"]
|
||||
script = ExtResource( 1 )
|
14
scenes/stages/StalkerCamera.tscn
Normal file
14
scenes/stages/StalkerCamera.tscn
Normal file
@ -0,0 +1,14 @@
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://scripts/stages/StalkerCamera.cs" type="Script" id=1]
|
||||
|
||||
[node name="StalkerCamera" type="Spatial"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="FreeCamOrigin" type="Spatial" parent="."]
|
||||
|
||||
[node name="FreeCam" type="Camera" parent="."]
|
||||
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 )
|
||||
fov = 58.0
|
||||
near = 3.0
|
||||
far = 1200.0
|
15
scenes/stages/StalkerCore.tscn
Normal file
15
scenes/stages/StalkerCore.tscn
Normal file
@ -0,0 +1,15 @@
|
||||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/levels/test.escn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/stages/StalkerCore.cs" type="Script" id=2]
|
||||
[ext_resource path="res://scenes/stages/StalkerCamera.tscn" type="PackedScene" id=3]
|
||||
|
||||
[node name="StalkerCore" type="Spatial"]
|
||||
script = ExtResource( 2 )
|
||||
|
||||
[node name="SkyLight" type="DirectionalLight" parent="."]
|
||||
transform = Transform( 0.920545, 0.275714, -0.276729, 0.0231072, 0.668731, 0.743145, 0.389953, -0.690492, 0.609226, -5.171, 15.255, -3.606 )
|
||||
|
||||
[node name="StalkerCamera" parent="." instance=ExtResource( 3 )]
|
||||
|
||||
[node name="test" parent="." instance=ExtResource( 1 )]
|
61
scenes/stages/menus/MenuMain.tscn
Normal file
61
scenes/stages/menus/MenuMain.tscn
Normal file
@ -0,0 +1,61 @@
|
||||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/user_interface/ButtonNormal.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/stages/menus/MenuMain.cs" type="Script" id=2]
|
||||
|
||||
[node name="MenuMain" type="Control"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
script = ExtResource( 2 )
|
||||
|
||||
[node name="Background" type="ColorRect" parent="."]
|
||||
anchor_right = 0.3
|
||||
anchor_bottom = 1.0
|
||||
color = Color( 0, 0, 0, 0.498039 )
|
||||
|
||||
[node name="MenuList" type="VBoxContainer" parent="."]
|
||||
anchor_left = 0.05
|
||||
anchor_right = 0.25
|
||||
anchor_bottom = 1.0
|
||||
|
||||
[node name="BtnLoadLevel" parent="MenuList" instance=ExtResource( 1 )]
|
||||
margin_top = 40.0
|
||||
margin_right = 204.0
|
||||
margin_bottom = 83.9259
|
||||
size_flags_vertical = 6
|
||||
text = "Load Level"
|
||||
|
||||
[node name="BtnLoadSky" parent="MenuList" instance=ExtResource( 1 )]
|
||||
margin_top = 168.0
|
||||
margin_right = 204.0
|
||||
margin_bottom = 211.926
|
||||
size_flags_vertical = 6
|
||||
text = "Load Sky"
|
||||
|
||||
[node name="BtnMultiplayer" parent="MenuList" instance=ExtResource( 1 )]
|
||||
margin_top = 297.0
|
||||
margin_right = 204.0
|
||||
margin_bottom = 340.926
|
||||
size_flags_vertical = 6
|
||||
text = "Multiplayer"
|
||||
|
||||
[node name="BtnAbout" parent="MenuList" instance=ExtResource( 1 )]
|
||||
margin_top = 425.0
|
||||
margin_right = 204.0
|
||||
margin_bottom = 468.926
|
||||
size_flags_vertical = 6
|
||||
text = "About"
|
||||
|
||||
[node name="BtnBack" parent="MenuList" instance=ExtResource( 1 )]
|
||||
margin_top = 554.0
|
||||
margin_right = 204.0
|
||||
margin_bottom = 597.926
|
||||
size_flags_vertical = 6
|
||||
text = "Back to Stalker"
|
||||
|
||||
[node name="BtnExit" parent="MenuList" instance=ExtResource( 1 )]
|
||||
margin_top = 683.0
|
||||
margin_right = 204.0
|
||||
margin_bottom = 726.926
|
||||
size_flags_vertical = 6
|
||||
text = "Exit Stalker"
|
Reference in New Issue
Block a user