From 723eabf73fbf7b85c904d4658234a39cd0f26c56 Mon Sep 17 00:00:00 2001 From: Jaap Marsman Date: Sun, 6 Aug 2023 04:40:19 +0800 Subject: [PATCH] added SchoolBell to main app development folder --- school_bell/README.md | 3 +++ school_bell/SchoolBell/.gitattributes | 2 ++ school_bell/SchoolBell/.gitignore | 2 ++ school_bell/SchoolBell/icon.svg | 1 + school_bell/SchoolBell/main_screen.tscn | 3 +++ school_bell/SchoolBell/project.godot | 15 +++++++++++++++ school_bell/makefile | 4 ++++ 7 files changed, 30 insertions(+) create mode 100644 school_bell/README.md create mode 100644 school_bell/SchoolBell/.gitattributes create mode 100644 school_bell/SchoolBell/.gitignore create mode 100644 school_bell/SchoolBell/icon.svg create mode 100644 school_bell/SchoolBell/main_screen.tscn create mode 100644 school_bell/SchoolBell/project.godot create mode 100644 school_bell/makefile diff --git a/school_bell/README.md b/school_bell/README.md new file mode 100644 index 0000000..231618e --- /dev/null +++ b/school_bell/README.md @@ -0,0 +1,3 @@ +# school_bell + +School Bell software (designed in Godot 4) \ No newline at end of file diff --git a/school_bell/SchoolBell/.gitattributes b/school_bell/SchoolBell/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/school_bell/SchoolBell/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/school_bell/SchoolBell/.gitignore b/school_bell/SchoolBell/.gitignore new file mode 100644 index 0000000..4709183 --- /dev/null +++ b/school_bell/SchoolBell/.gitignore @@ -0,0 +1,2 @@ +# Godot 4+ specific ignores +.godot/ diff --git a/school_bell/SchoolBell/icon.svg b/school_bell/SchoolBell/icon.svg new file mode 100644 index 0000000..b370ceb --- /dev/null +++ b/school_bell/SchoolBell/icon.svg @@ -0,0 +1 @@ + diff --git a/school_bell/SchoolBell/main_screen.tscn b/school_bell/SchoolBell/main_screen.tscn new file mode 100644 index 0000000..0b8658c --- /dev/null +++ b/school_bell/SchoolBell/main_screen.tscn @@ -0,0 +1,3 @@ +[gd_scene format=3 uid="uid://dsigtmuaoiggu"] + +[node name="Node2D" type="Node2D"] diff --git a/school_bell/SchoolBell/project.godot b/school_bell/SchoolBell/project.godot new file mode 100644 index 0000000..326d816 --- /dev/null +++ b/school_bell/SchoolBell/project.godot @@ -0,0 +1,15 @@ +; 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="SchoolBell" +config/features=PackedStringArray("4.1", "Forward Plus") +config/icon="res://icon.svg" diff --git a/school_bell/makefile b/school_bell/makefile new file mode 100644 index 0000000..c10e7c8 --- /dev/null +++ b/school_bell/makefile @@ -0,0 +1,4 @@ +git: + git add -A + git commit -m "$m" + git push