From c355547a0d18e9c3d9f86f6e6649c60132b6e408 Mon Sep 17 00:00:00 2001 From: Zenny Date: Mon, 24 Jul 2023 12:28:36 -0700 Subject: [PATCH] Initial commit --- .gitattributes | 2 ++ .gitignore | 1 - FPS.csproj | 6 ++++++ FPS.sln | 19 +++++++++++++++++++ README.md | 2 -- Scenes/Level.tscn | 21 +++++++++++++++++++++ project.godot | 19 +++++++++++++++++++ 7 files changed, 67 insertions(+), 3 deletions(-) create mode 100644 .gitattributes create mode 100644 FPS.csproj create mode 100644 FPS.sln delete mode 100644 README.md create mode 100644 Scenes/Level.tscn create mode 100644 project.godot 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 index 4a28b98..f842965 100644 --- a/.gitignore +++ b/.gitignore @@ -414,4 +414,3 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml - diff --git a/FPS.csproj b/FPS.csproj new file mode 100644 index 0000000..8ee8c44 --- /dev/null +++ b/FPS.csproj @@ -0,0 +1,6 @@ + + + net6.0 + true + + \ No newline at end of file diff --git a/FPS.sln b/FPS.sln new file mode 100644 index 0000000..4b9dd51 --- /dev/null +++ b/FPS.sln @@ -0,0 +1,19 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FPS", "FPS.csproj", "{97A2809C-176D-429E-917E-F390A3EFFA5C}" +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 + {97A2809C-176D-429E-917E-F390A3EFFA5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {97A2809C-176D-429E-917E-F390A3EFFA5C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {97A2809C-176D-429E-917E-F390A3EFFA5C}.ExportDebug|Any CPU.ActiveCfg = ExportDebug|Any CPU + {97A2809C-176D-429E-917E-F390A3EFFA5C}.ExportDebug|Any CPU.Build.0 = ExportDebug|Any CPU + {97A2809C-176D-429E-917E-F390A3EFFA5C}.ExportRelease|Any CPU.ActiveCfg = ExportRelease|Any CPU + {97A2809C-176D-429E-917E-F390A3EFFA5C}.ExportRelease|Any CPU.Build.0 = ExportRelease|Any CPU + EndGlobalSection +EndGlobal diff --git a/README.md b/README.md deleted file mode 100644 index 4fa6afa..0000000 --- a/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# FPS - diff --git a/Scenes/Level.tscn b/Scenes/Level.tscn new file mode 100644 index 0000000..7dbabe4 --- /dev/null +++ b/Scenes/Level.tscn @@ -0,0 +1,21 @@ +[gd_scene load_steps=4 format=3 uid="uid://ocor7udqvoec"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_gyf0l"] +size = Vector3(20, 0.5, 20) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_78bnu"] +albedo_color = Color(0, 0, 0, 1) + +[sub_resource type="BoxMesh" id="BoxMesh_v2sg1"] +material = SubResource("StandardMaterial3D_78bnu") +size = Vector3(20, 0.5, 20) + +[node name="Level" type="Node3D"] + +[node name="StaticBody3D" type="StaticBody3D" parent="."] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="StaticBody3D"] +shape = SubResource("BoxShape3D_gyf0l") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="StaticBody3D"] +mesh = SubResource("BoxMesh_v2sg1") diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..eb3e6d2 --- /dev/null +++ b/project.godot @@ -0,0 +1,19 @@ +; 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="FPS" +config/features=PackedStringArray("4.1", "Forward Plus") +config/icon="res://icon.svg" + +[dotnet] + +project/assembly_name="FPS"