From 118e3df72f67df2d52f984b311f90e1647e0427a Mon Sep 17 00:00:00 2001 From: Sergey Lapin Date: Tue, 25 Oct 2022 15:41:27 +0300 Subject: [PATCH] Initial commit --- .gitignore | 5 +++++ .gitmodules | 8 ++++++++ Makefile | 14 ++++++++++++++ run-editor.sh | 4 ++++ 4 files changed, 31 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 Makefile create mode 100755 run-editor.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1fc4a41 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.import +godot/logs +assets/blender/*.blend1 +assets/blender/*.blend2 +assets/blender/*.blend3 diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..85a31a5 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,8 @@ +[submodule "src/godot"] + path = src/godot + url = git@github.com:godotengine/godot + branch = 3.x +[submodule "dialogic"] + path = dialogic + url = https://github.com/coppolaemilio/dialogic + branch = main diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2402de4 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONY: all godot-editor-main +all: godot-editor-main +godot-editor-main: + cd src/godot; \ + scons platform=x11 target=release_debug tools=yes custom_modules=../modules -j6; \ + scons platform=x11 target=release tools=no custom_modules=../modules -j6; \ + scons platform=x11 target=release_debug tools=no custom_modules=../modules -j6; +# cd src/godot; \ +# scons platform=x11 target=debug tools=yes custom_modules=../modules -j6 + cd src/godot; \ + scons platform=x11 target=release tools=no custom_modules=../modules -j6; +# scons platform=server target=release_debug tools=yes custom_modules=../modules -j6 +# scons platform=windows target=release tools=yes custom_modules=../modules -j6 +# scons platform=javascript target=release tools=yes custom_modules=../modules -j6 diff --git a/run-editor.sh b/run-editor.sh new file mode 100755 index 0000000..914210b --- /dev/null +++ b/run-editor.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd godot +../src/godot/bin/godot.x11.opt.tools.64 -e $*