commit 6965f1256ec5ee2087b029b17bc9fc69eb05bdc2 Author: Josef Date: Wed Nov 26 15:30:15 2025 +0100 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/.gitignore b/.gitignore new file mode 100644 index 0000000..3487133 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# Godot 4+ specific ignores +.godot/ +/android/ +.rokojori/cache/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..13f2a2d --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "addons/rokojori_action_library"] + path = addons/rokojori_action_library + url = https://community.rokojori.com/Rokojori/rj-action-library.git diff --git a/.rokojori/.gdignore b/.rokojori/.gdignore new file mode 100644 index 0000000..e69de29 diff --git a/.rokojori/settings/.gdignore b/.rokojori/settings/.gdignore new file mode 100644 index 0000000..e69de29 diff --git a/Winter Tales.csproj b/Winter Tales.csproj new file mode 100644 index 0000000..4bf14bd --- /dev/null +++ b/Winter Tales.csproj @@ -0,0 +1,8 @@ + + + net8.0 + net9.0 + true + WinterTales + + \ No newline at end of file diff --git a/Winter Tales.sln b/Winter Tales.sln new file mode 100644 index 0000000..16c8e51 --- /dev/null +++ b/Winter Tales.sln @@ -0,0 +1,19 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Winter Tales", "Winter Tales.csproj", "{4197C05B-4CBA-4DA9-BE8B-B022E9C58D4D}" +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 + {4197C05B-4CBA-4DA9-BE8B-B022E9C58D4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4197C05B-4CBA-4DA9-BE8B-B022E9C58D4D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4197C05B-4CBA-4DA9-BE8B-B022E9C58D4D}.ExportDebug|Any CPU.ActiveCfg = ExportDebug|Any CPU + {4197C05B-4CBA-4DA9-BE8B-B022E9C58D4D}.ExportDebug|Any CPU.Build.0 = ExportDebug|Any CPU + {4197C05B-4CBA-4DA9-BE8B-B022E9C58D4D}.ExportRelease|Any CPU.ActiveCfg = ExportRelease|Any CPU + {4197C05B-4CBA-4DA9-BE8B-B022E9C58D4D}.ExportRelease|Any CPU.Build.0 = ExportRelease|Any CPU + EndGlobalSection +EndGlobal diff --git a/addons/rokojori_action_library b/addons/rokojori_action_library new file mode 160000 index 0000000..c9dd163 --- /dev/null +++ b/addons/rokojori_action_library @@ -0,0 +1 @@ +Subproject commit c9dd163624068b397beffa7d7448349bdae7007a 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..6733f77 --- /dev/null +++ b/icon.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4innxujpgudr" +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..aafe7b1 --- /dev/null +++ b/project.godot @@ -0,0 +1,27 @@ +; 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="Winter Tales" +config/features=PackedStringArray("4.5", "C#", "Forward Plus") +config/icon="res://icon.svg" + +[autoload] + +RokojoriRootAutoLoad="*res://addons/rokojori_action_library/Runtime/Godot/Root.cs" + +[dotnet] + +project/assembly_name="Winter Tales" + +[editor_plugins] + +enabled=PackedStringArray("res://addons/rokojori_action_library/plugin.cfg")