commit 17950087cac89576d6579cf704df135b0cb4e64d Author: Imrayya Date: Sun Jul 26 20:35:14 2026 +0700 Initial Commit diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f28239b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,4 @@ +root = true + +[*] +charset = utf-8 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0af181c --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Godot 4+ specific ignores +.godot/ +/android/ diff --git a/Base.tscn b/Base.tscn new file mode 100644 index 0000000..98dfe04 --- /dev/null +++ b/Base.tscn @@ -0,0 +1,3 @@ +[gd_scene format=3 uid="uid://c82y37r6t5t4p"] + +[node name="Base" type="Node3D" unique_id=1080351933] diff --git a/FrogFPS.csproj b/FrogFPS.csproj new file mode 100644 index 0000000..19b3a42 --- /dev/null +++ b/FrogFPS.csproj @@ -0,0 +1,7 @@ + + + net8.0 + net9.0 + true + + \ No newline at end of file diff --git a/FrogFPS.sln b/FrogFPS.sln new file mode 100644 index 0000000..4c37410 --- /dev/null +++ b/FrogFPS.sln @@ -0,0 +1,19 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FrogFPS", "FrogFPS.csproj", "{9B3A1C8C-E586-4BFB-8121-E7414CAAE06D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + ExportDebug|Any CPU = ExportDebug|Any CPU + ExportRelease|Any CPU = ExportRelease|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9B3A1C8C-E586-4BFB-8121-E7414CAAE06D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9B3A1C8C-E586-4BFB-8121-E7414CAAE06D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9B3A1C8C-E586-4BFB-8121-E7414CAAE06D}.ExportDebug|Any CPU.ActiveCfg = ExportDebug|Any CPU + {9B3A1C8C-E586-4BFB-8121-E7414CAAE06D}.ExportDebug|Any CPU.Build.0 = ExportDebug|Any CPU + {9B3A1C8C-E586-4BFB-8121-E7414CAAE06D}.ExportRelease|Any CPU.ActiveCfg = ExportRelease|Any CPU + {9B3A1C8C-E586-4BFB-8121-E7414CAAE06D}.ExportRelease|Any CPU.Build.0 = ExportRelease|Any CPU + EndGlobalSection +EndGlobal diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..c6bbb7d --- /dev/null +++ b/icon.svg @@ -0,0 +1 @@ + diff --git a/icon.svg.import b/icon.svg.import new file mode 100644 index 0000000..70962c8 --- /dev/null +++ b/icon.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsre0hqurjnqc" +path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.svg" +dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..0d213eb --- /dev/null +++ b/project.godot @@ -0,0 +1,32 @@ +; 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=5 + +[application] + +config/name="FrogFPS" +config/features=PackedStringArray("4.7", "Forward Plus") +config/icon="res://icon.svg" + +[display] + +window/stretch/mode="canvas_items" +window/stretch/aspect="expand" + +[dotnet] + +project/assembly_name="FrogFPS" + +[physics] + +3d/physics_engine="Jolt Physics" + +[rendering] + +rendering_device/driver.windows="d3d12"