mirror of
https://github.com/tonytins/godotstarter.git
synced 2025-03-15 06:01:26 +00:00
Initial commit
This commit is contained in:
commit
8d3ac754f3
12 changed files with 741 additions and 0 deletions
63
.gitattributes
vendored
Normal file
63
.gitattributes
vendored
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
###############################################################################
|
||||||
|
# Set default behavior to automatically normalize line endings.
|
||||||
|
###############################################################################
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Set default behavior for command prompt diff.
|
||||||
|
#
|
||||||
|
# This is need for earlier builds of msysgit that does not have it on by
|
||||||
|
# default for csharp files.
|
||||||
|
# Note: This is only used by command line
|
||||||
|
###############################################################################
|
||||||
|
#*.cs diff=csharp
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Set the merge driver for project and solution files
|
||||||
|
#
|
||||||
|
# Merging from the command prompt will add diff markers to the files if there
|
||||||
|
# are conflicts (Merging from VS is not affected by the settings below, in VS
|
||||||
|
# the diff markers are never inserted). Diff markers may cause the following
|
||||||
|
# file extensions to fail to load in VS. An alternative would be to treat
|
||||||
|
# these files as binary and thus will always conflict and require user
|
||||||
|
# intervention with every merge. To do so, just uncomment the entries below
|
||||||
|
###############################################################################
|
||||||
|
#*.sln merge=binary
|
||||||
|
#*.csproj merge=binary
|
||||||
|
#*.vbproj merge=binary
|
||||||
|
#*.vcxproj merge=binary
|
||||||
|
#*.vcproj merge=binary
|
||||||
|
#*.dbproj merge=binary
|
||||||
|
#*.fsproj merge=binary
|
||||||
|
#*.lsproj merge=binary
|
||||||
|
#*.wixproj merge=binary
|
||||||
|
#*.modelproj merge=binary
|
||||||
|
#*.sqlproj merge=binary
|
||||||
|
#*.wwaproj merge=binary
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# behavior for image files
|
||||||
|
#
|
||||||
|
# image files are treated as binary by default.
|
||||||
|
###############################################################################
|
||||||
|
#*.jpg binary
|
||||||
|
#*.png binary
|
||||||
|
#*.gif binary
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# diff behavior for common document formats
|
||||||
|
#
|
||||||
|
# Convert binary document formats to text before diffing them. This feature
|
||||||
|
# is only available from the command line. Turn it on by uncommenting the
|
||||||
|
# entries below.
|
||||||
|
###############################################################################
|
||||||
|
#*.doc diff=astextplain
|
||||||
|
#*.DOC diff=astextplain
|
||||||
|
#*.docx diff=astextplain
|
||||||
|
#*.DOCX diff=astextplain
|
||||||
|
#*.dot diff=astextplain
|
||||||
|
#*.DOT diff=astextplain
|
||||||
|
#*.pdf diff=astextplain
|
||||||
|
#*.PDF diff=astextplain
|
||||||
|
#*.rtf diff=astextplain
|
||||||
|
#*.RTF diff=astextplain
|
94
.gitignore
vendored
Normal file
94
.gitignore
vendored
Normal file
|
@ -0,0 +1,94 @@
|
||||||
|
# Created by https://www.gitignore.io/api/linux,macos,windows,godot,visualstudiocode
|
||||||
|
# Edit at https://www.gitignore.io/?templates=linux,macos,windows,godot,visualstudiocode
|
||||||
|
|
||||||
|
### Godot ###
|
||||||
|
|
||||||
|
# Godot-specific ignores
|
||||||
|
.import/
|
||||||
|
export.cfg
|
||||||
|
export_presets.cfg
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Mono-specific ignores
|
||||||
|
.mono/
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
### macOS ###
|
||||||
|
# General
|
||||||
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Icon must end with two \r
|
||||||
|
Icon
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear in the root of a volume
|
||||||
|
.DocumentRevisions-V100
|
||||||
|
.fseventsd
|
||||||
|
.Spotlight-V100
|
||||||
|
.TemporaryItems
|
||||||
|
.Trashes
|
||||||
|
.VolumeIcon.icns
|
||||||
|
.com.apple.timemachine.donotpresent
|
||||||
|
|
||||||
|
# Directories potentially created on remote AFP share
|
||||||
|
.AppleDB
|
||||||
|
.AppleDesktop
|
||||||
|
Network Trash Folder
|
||||||
|
Temporary Items
|
||||||
|
.apdisk
|
||||||
|
|
||||||
|
### VisualStudioCode ###
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
|
||||||
|
### VisualStudioCode Patch ###
|
||||||
|
# Ignore all local history of files
|
||||||
|
.history
|
||||||
|
|
||||||
|
### Windows ###
|
||||||
|
# Windows thumbnail cache files
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
||||||
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
# Dump file
|
||||||
|
*.stackdump
|
||||||
|
|
||||||
|
# Folder config file
|
||||||
|
[Dd]esktop.ini
|
||||||
|
|
||||||
|
# Recycle Bin used on file shares
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
|
# Windows Installer files
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msix
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
|
# Windows shortcuts
|
||||||
|
*.lnk
|
||||||
|
|
||||||
|
# End of https://www.gitignore.io/api/linux,macos,windows,godot,visualstudiocode
|
24
LICENSE
Normal file
24
LICENSE
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
This is free and unencumbered software released into the public domain.
|
||||||
|
|
||||||
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||||
|
distribute this software, either in source code form or as a compiled
|
||||||
|
binary, for any purpose, commercial or non-commercial, and by any
|
||||||
|
means.
|
||||||
|
|
||||||
|
In jurisdictions that recognize copyright laws, the author or authors
|
||||||
|
of this software dedicate any and all copyright interest in the
|
||||||
|
software to the public domain. We make this dedication for the benefit
|
||||||
|
of the public at large and to the detriment of our heirs and
|
||||||
|
successors. We intend this dedication to be an overt act of
|
||||||
|
relinquishment in perpetuity of all present and future rights to this
|
||||||
|
software under copyright law.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
For more information, please refer to <http://unlicense.org>
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Anthony's Godot Template
|
||||||
|
|
||||||
|
This is my own basic Godot template. It features a empty title screen with a few pre-made window dialogs.
|
101
project/default_env.tres
Normal file
101
project/default_env.tres
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
[gd_resource type="Environment" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[sub_resource type="ProceduralSky" id=1]
|
||||||
|
|
||||||
|
radiance_size = 4
|
||||||
|
sky_top_color = Color( 0.0470588, 0.454902, 0.976471, 1 )
|
||||||
|
sky_horizon_color = Color( 0.556863, 0.823529, 0.909804, 1 )
|
||||||
|
sky_curve = 0.25
|
||||||
|
sky_energy = 1.0
|
||||||
|
ground_bottom_color = Color( 0.101961, 0.145098, 0.188235, 1 )
|
||||||
|
ground_horizon_color = Color( 0.482353, 0.788235, 0.952941, 1 )
|
||||||
|
ground_curve = 0.01
|
||||||
|
ground_energy = 1.0
|
||||||
|
sun_color = Color( 1, 1, 1, 1 )
|
||||||
|
sun_latitude = 35.0
|
||||||
|
sun_longitude = 0.0
|
||||||
|
sun_angle_min = 1.0
|
||||||
|
sun_angle_max = 100.0
|
||||||
|
sun_curve = 0.05
|
||||||
|
sun_energy = 16.0
|
||||||
|
texture_size = 2
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
|
||||||
|
background_mode = 2
|
||||||
|
background_sky = SubResource( 1 )
|
||||||
|
background_sky_custom_fov = 0.0
|
||||||
|
background_color = Color( 0, 0, 0, 1 )
|
||||||
|
background_energy = 1.0
|
||||||
|
background_canvas_max_layer = 0
|
||||||
|
ambient_light_color = Color( 0, 0, 0, 1 )
|
||||||
|
ambient_light_energy = 1.0
|
||||||
|
ambient_light_sky_contribution = 1.0
|
||||||
|
fog_enabled = false
|
||||||
|
fog_color = Color( 0.5, 0.6, 0.7, 1 )
|
||||||
|
fog_sun_color = Color( 1, 0.9, 0.7, 1 )
|
||||||
|
fog_sun_amount = 0.0
|
||||||
|
fog_depth_enabled = true
|
||||||
|
fog_depth_begin = 10.0
|
||||||
|
fog_depth_curve = 1.0
|
||||||
|
fog_transmit_enabled = false
|
||||||
|
fog_transmit_curve = 1.0
|
||||||
|
fog_height_enabled = false
|
||||||
|
fog_height_min = 0.0
|
||||||
|
fog_height_max = 100.0
|
||||||
|
fog_height_curve = 1.0
|
||||||
|
tonemap_mode = 0
|
||||||
|
tonemap_exposure = 1.0
|
||||||
|
tonemap_white = 1.0
|
||||||
|
auto_exposure_enabled = false
|
||||||
|
auto_exposure_scale = 0.4
|
||||||
|
auto_exposure_min_luma = 0.05
|
||||||
|
auto_exposure_max_luma = 8.0
|
||||||
|
auto_exposure_speed = 0.5
|
||||||
|
ss_reflections_enabled = false
|
||||||
|
ss_reflections_max_steps = 64
|
||||||
|
ss_reflections_fade_in = 0.15
|
||||||
|
ss_reflections_fade_out = 2.0
|
||||||
|
ss_reflections_depth_tolerance = 0.2
|
||||||
|
ss_reflections_roughness = true
|
||||||
|
ssao_enabled = false
|
||||||
|
ssao_radius = 1.0
|
||||||
|
ssao_intensity = 1.0
|
||||||
|
ssao_radius2 = 0.0
|
||||||
|
ssao_intensity2 = 1.0
|
||||||
|
ssao_bias = 0.01
|
||||||
|
ssao_light_affect = 0.0
|
||||||
|
ssao_color = Color( 0, 0, 0, 1 )
|
||||||
|
ssao_quality = 0
|
||||||
|
ssao_blur = 3
|
||||||
|
ssao_edge_sharpness = 4.0
|
||||||
|
dof_blur_far_enabled = false
|
||||||
|
dof_blur_far_distance = 10.0
|
||||||
|
dof_blur_far_transition = 5.0
|
||||||
|
dof_blur_far_amount = 0.1
|
||||||
|
dof_blur_far_quality = 1
|
||||||
|
dof_blur_near_enabled = false
|
||||||
|
dof_blur_near_distance = 2.0
|
||||||
|
dof_blur_near_transition = 1.0
|
||||||
|
dof_blur_near_amount = 0.1
|
||||||
|
dof_blur_near_quality = 1
|
||||||
|
glow_enabled = false
|
||||||
|
glow_levels/1 = false
|
||||||
|
glow_levels/2 = false
|
||||||
|
glow_levels/3 = true
|
||||||
|
glow_levels/4 = false
|
||||||
|
glow_levels/5 = true
|
||||||
|
glow_levels/6 = false
|
||||||
|
glow_levels/7 = false
|
||||||
|
glow_intensity = 0.8
|
||||||
|
glow_strength = 1.0
|
||||||
|
glow_bloom = 0.0
|
||||||
|
glow_blend_mode = 2
|
||||||
|
glow_hdr_threshold = 1.0
|
||||||
|
glow_hdr_scale = 2.0
|
||||||
|
glow_bicubic_upscale = false
|
||||||
|
adjustment_enabled = false
|
||||||
|
adjustment_brightness = 1.0
|
||||||
|
adjustment_contrast = 1.0
|
||||||
|
adjustment_saturation = 1.0
|
||||||
|
|
BIN
project/icon.png
Normal file
BIN
project/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
29
project/icon.png.import
Normal file
29
project/icon.png.import
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://icon.png"
|
||||||
|
dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
29
project/project.godot
Normal file
29
project/project.godot
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
; Engine configuration file.
|
||||||
|
; It's best edited using the editor UI and not directly,
|
||||||
|
; since the parameters that go here are not all obvious.
|
||||||
|
;
|
||||||
|
; Format:
|
||||||
|
; [section] ; section goes between []
|
||||||
|
; param=value ; assign values to parameters
|
||||||
|
|
||||||
|
config_version=3
|
||||||
|
|
||||||
|
[application]
|
||||||
|
|
||||||
|
config/name="Anthony's Godot Template"
|
||||||
|
run/main_scene="res://scenes/TitleScn.tscn"
|
||||||
|
|
||||||
|
[autoload]
|
||||||
|
|
||||||
|
WinDialogs="*res://scenes/WinDialogs.tscn"
|
||||||
|
GameKit="*res://src/GameKit.gd"
|
||||||
|
|
||||||
|
[display]
|
||||||
|
|
||||||
|
window/size/resizable=false
|
||||||
|
|
||||||
|
[input]
|
||||||
|
|
||||||
|
ui_pause=[ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null)
|
||||||
|
]
|
9
project/scn/TitleScn.tscn
Normal file
9
project/scn/TitleScn.tscn
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[gd_scene load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=1]
|
||||||
|
|
||||||
|
[node name="TitleScn" type="Node" index="0"]
|
||||||
|
|
||||||
|
[node name="WinDialogs" parent="." index="0" instance=ExtResource( 1 )]
|
||||||
|
|
||||||
|
|
355
project/scn/WinDialogs.tscn
Normal file
355
project/scn/WinDialogs.tscn
Normal file
|
@ -0,0 +1,355 @@
|
||||||
|
[gd_scene load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://src/WinDialogs.gd" type="Script" id=1]
|
||||||
|
|
||||||
|
[node name="WinDialogs" type="Control"]
|
||||||
|
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
script = ExtResource( 1 )
|
||||||
|
|
||||||
|
[node name="PauseWin" type="PopupDialog" parent="." index="0"]
|
||||||
|
|
||||||
|
pause_mode = 2
|
||||||
|
editor/display_folded = true
|
||||||
|
visible = false
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 318.0
|
||||||
|
margin_top = 227.0
|
||||||
|
margin_right = 494.0
|
||||||
|
margin_bottom = 341.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
popup_exclusive = false
|
||||||
|
_sections_unfolded = [ "Pause" ]
|
||||||
|
|
||||||
|
[node name="PauseVbox" type="VBoxContainer" parent="PauseWin" index="0"]
|
||||||
|
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
margin_left = 10.0
|
||||||
|
margin_top = 10.0
|
||||||
|
margin_right = -10.0
|
||||||
|
margin_bottom = -10.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
mouse_filter = 1
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
alignment = 0
|
||||||
|
_sections_unfolded = [ "Margin" ]
|
||||||
|
|
||||||
|
[node name="PauseLbl" type="Label" parent="PauseWin/PauseVbox" index="0"]
|
||||||
|
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_right = 156.0
|
||||||
|
margin_bottom = 14.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
mouse_filter = 2
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 4
|
||||||
|
text = "KPUS"
|
||||||
|
align = 1
|
||||||
|
percent_visible = 1.0
|
||||||
|
lines_skipped = 0
|
||||||
|
max_lines_visible = -1
|
||||||
|
|
||||||
|
[node name="SettingsBtn" type="Button" parent="PauseWin/PauseVbox" index="1"]
|
||||||
|
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 18.0
|
||||||
|
margin_right = 156.0
|
||||||
|
margin_bottom = 38.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
focus_mode = 2
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
toggle_mode = false
|
||||||
|
enabled_focus_mode = 2
|
||||||
|
shortcut = null
|
||||||
|
group = null
|
||||||
|
text = "KSET"
|
||||||
|
flat = false
|
||||||
|
align = 1
|
||||||
|
|
||||||
|
[node name="ResumeBtn" type="Button" parent="PauseWin/PauseVbox" index="2"]
|
||||||
|
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 42.0
|
||||||
|
margin_right = 156.0
|
||||||
|
margin_bottom = 62.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
focus_mode = 2
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
toggle_mode = false
|
||||||
|
enabled_focus_mode = 2
|
||||||
|
shortcut = null
|
||||||
|
group = null
|
||||||
|
text = "KRUS"
|
||||||
|
flat = false
|
||||||
|
align = 1
|
||||||
|
|
||||||
|
[node name="ExitBtn" type="Button" parent="PauseWin/PauseVbox" index="3"]
|
||||||
|
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_top = 66.0
|
||||||
|
margin_right = 156.0
|
||||||
|
margin_bottom = 86.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
focus_mode = 2
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
toggle_mode = false
|
||||||
|
enabled_focus_mode = 2
|
||||||
|
shortcut = null
|
||||||
|
group = null
|
||||||
|
text = "KEXT"
|
||||||
|
flat = false
|
||||||
|
align = 1
|
||||||
|
|
||||||
|
[node name="CreditsWin" type="AcceptDialog" parent="." index="1"]
|
||||||
|
|
||||||
|
visible = false
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 260.0
|
||||||
|
margin_top = 132.0
|
||||||
|
margin_right = 608.0
|
||||||
|
margin_bottom = 399.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
popup_exclusive = false
|
||||||
|
window_title = "KCRE"
|
||||||
|
resizable = false
|
||||||
|
dialog_hide_on_ok = true
|
||||||
|
_sections_unfolded = [ "Pause" ]
|
||||||
|
|
||||||
|
[node name="CreditsTxt" type="RichTextLabel" parent="CreditsWin" index="3"]
|
||||||
|
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 8.0
|
||||||
|
margin_top = 8.0
|
||||||
|
margin_right = 340.0
|
||||||
|
margin_bottom = 231.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = true
|
||||||
|
focus_mode = 2
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
bbcode_enabled = true
|
||||||
|
bbcode_text = "[center]Created by
|
||||||
|
Anthony Wilcox
|
||||||
|
[/center]"
|
||||||
|
visible_characters = -1
|
||||||
|
percent_visible = 1.0
|
||||||
|
meta_underlined = true
|
||||||
|
tab_size = 4
|
||||||
|
text = "Created by
|
||||||
|
Anthony Wilcox
|
||||||
|
"
|
||||||
|
scroll_active = true
|
||||||
|
scroll_following = false
|
||||||
|
selection_enabled = true
|
||||||
|
override_selected_font_color = false
|
||||||
|
_sections_unfolded = [ "BBCode" ]
|
||||||
|
|
||||||
|
[node name="SettingsWin" type="AcceptDialog" parent="." index="2"]
|
||||||
|
|
||||||
|
pause_mode = 2
|
||||||
|
visible = false
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 320.0
|
||||||
|
margin_top = 211.0
|
||||||
|
margin_right = 472.0
|
||||||
|
margin_bottom = 279.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
popup_exclusive = false
|
||||||
|
window_title = "KSET"
|
||||||
|
resizable = false
|
||||||
|
dialog_hide_on_ok = true
|
||||||
|
_sections_unfolded = [ "Dialog", "Pause" ]
|
||||||
|
|
||||||
|
[node name="Grid" type="GridContainer" parent="SettingsWin" index="3"]
|
||||||
|
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -68.0
|
||||||
|
margin_top = -26.0
|
||||||
|
margin_right = 68.0
|
||||||
|
margin_bottom = -2.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
mouse_filter = 1
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="LicenseWin" type="AcceptDialog" parent="." index="3"]
|
||||||
|
|
||||||
|
visible = false
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 209.0
|
||||||
|
margin_top = 129.0
|
||||||
|
margin_right = 613.0
|
||||||
|
margin_bottom = 404.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = false
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
popup_exclusive = false
|
||||||
|
window_title = "KLIC"
|
||||||
|
resizable = false
|
||||||
|
dialog_hide_on_ok = true
|
||||||
|
_sections_unfolded = [ "Dialog", "Pause" ]
|
||||||
|
|
||||||
|
[node name="LicenseTxt" type="RichTextLabel" parent="LicenseWin" index="3"]
|
||||||
|
|
||||||
|
anchor_left = 0.0
|
||||||
|
anchor_top = 0.0
|
||||||
|
anchor_right = 0.0
|
||||||
|
anchor_bottom = 0.0
|
||||||
|
margin_left = 8.0
|
||||||
|
margin_top = 8.0
|
||||||
|
margin_right = 396.0
|
||||||
|
margin_bottom = 239.0
|
||||||
|
rect_pivot_offset = Vector2( 0, 0 )
|
||||||
|
rect_clip_content = true
|
||||||
|
mouse_filter = 0
|
||||||
|
mouse_default_cursor_shape = 0
|
||||||
|
size_flags_horizontal = 1
|
||||||
|
size_flags_vertical = 1
|
||||||
|
bbcode_enabled = true
|
||||||
|
bbcode_text = "This is free and unencumbered software released into the public domain.
|
||||||
|
|
||||||
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||||
|
distribute this software, either in source code form or as a compiled
|
||||||
|
binary, for any purpose, commercial or non-commercial, and by any
|
||||||
|
means.
|
||||||
|
|
||||||
|
In jurisdictions that recognize copyright laws, the author or authors
|
||||||
|
of this software dedicate any and all copyright interest in the
|
||||||
|
software to the public domain. We make this dedication for the benefit
|
||||||
|
of the public at large and to the detriment of our heirs and
|
||||||
|
successors. We intend this dedication to be an overt act of
|
||||||
|
relinquishment in perpetuity of all present and future rights to this
|
||||||
|
software under copyright law.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
For more information, please refer to <http://unlicense.org>"
|
||||||
|
visible_characters = -1
|
||||||
|
percent_visible = 1.0
|
||||||
|
meta_underlined = true
|
||||||
|
tab_size = 4
|
||||||
|
text = "This is free and unencumbered software released into the public domain.
|
||||||
|
|
||||||
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
||||||
|
distribute this software, either in source code form or as a compiled
|
||||||
|
binary, for any purpose, commercial or non-commercial, and by any
|
||||||
|
means.
|
||||||
|
|
||||||
|
In jurisdictions that recognize copyright laws, the author or authors
|
||||||
|
of this software dedicate any and all copyright interest in the
|
||||||
|
software to the public domain. We make this dedication for the benefit
|
||||||
|
of the public at large and to the detriment of our heirs and
|
||||||
|
successors. We intend this dedication to be an overt act of
|
||||||
|
relinquishment in perpetuity of all present and future rights to this
|
||||||
|
software under copyright law.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
For more information, please refer to <http://unlicense.org>"
|
||||||
|
scroll_active = true
|
||||||
|
scroll_following = false
|
||||||
|
selection_enabled = false
|
||||||
|
override_selected_font_color = false
|
||||||
|
_sections_unfolded = [ "BBCode" ]
|
||||||
|
|
||||||
|
[connection signal="pressed" from="PauseWin/PauseVbox/SettingsBtn" to="." method="_on_SettingsBtn_pressed"]
|
||||||
|
|
||||||
|
[connection signal="pressed" from="PauseWin/PauseVbox/ResumeBtn" to="." method="_on_ResumeBtn_pressed"]
|
||||||
|
|
||||||
|
[connection signal="pressed" from="PauseWin/PauseVbox/ExitBtn" to="." method="_on_ExitBtn_pressed"]
|
||||||
|
|
||||||
|
|
13
project/src/GameKit.gd
Normal file
13
project/src/GameKit.gd
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
extends Node
|
||||||
|
|
||||||
|
const NOT_IMPLEMENTED = "This feature is not implemented"
|
||||||
|
|
||||||
|
func is_game_paused(is_paused):
|
||||||
|
if is_paused == true:
|
||||||
|
get_tree().paused = true
|
||||||
|
else:
|
||||||
|
get_tree().paused = false
|
||||||
|
|
||||||
|
func switch_scenes(is_mode):
|
||||||
|
if is_mode == "title":
|
||||||
|
get_tree().change_scene("res://scn/TitleScn.tscn")
|
21
project/src/WinDialogs.gd
Normal file
21
project/src/WinDialogs.gd
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
extends "res://src/GameKit.gd"
|
||||||
|
|
||||||
|
func _on_ExitBtn_pressed():
|
||||||
|
is_game_paused(false)
|
||||||
|
switch_scenes("title")
|
||||||
|
|
||||||
|
func _on_SettingsBtn_pressed():
|
||||||
|
$SettingsWin.show()
|
||||||
|
|
||||||
|
func _on_CreditsBtn_pressed():
|
||||||
|
$CreditsWin.show()
|
||||||
|
|
||||||
|
func _on_LicenseBtn_pressed():
|
||||||
|
$LicenseWin.show()
|
||||||
|
|
||||||
|
func _on_CloseAbtBtn_pressed():
|
||||||
|
$AboutWin.hide()
|
||||||
|
|
||||||
|
func _on_ResumeBtn_pressed():
|
||||||
|
$PauseWin.hide()
|
||||||
|
is_game_paused(false)
|
Loading…
Add table
Reference in a new issue