Compare commits

...

28 commits

Author SHA1 Message Date
deed
ee30b513b1 Add CONTRIBUTING 2022-09-24 22:48:37 +02:00
dca56c3aff Merge branch 'aleajactaest' 2022-09-08 20:19:37 +02:00
f45406cc4e update godot 4.0 alpha 14 2022-09-07 00:27:28 +02:00
cc45f82636 update godot 4.0 alpha 13 2022-09-05 22:29:23 +02:00
ad3b3f3f67 update godot 4.0 alpha 12 2022-09-05 21:56:40 +02:00
fa354fc980 update godot 4 alpha 11 2022-08-09 16:40:08 +02:00
3dc7e8d0ad Merge branch 'aleajactaest' 2022-07-03 19:53:42 +02:00
97a4144604 implement NinePatchRect 2022-06-26 15:20:42 +02:00
be596f9c69 upgrade godot to alpha9 2022-06-15 22:53:34 +02:00
YannK
575eb13e6e Indication de la bonne version alpha utilisée <debug> 2022-05-26 11:27:31 +02:00
0b975133e7 correct import setting 2022-05-24 23:32:25 +02:00
fa5bc6b1a6 Merge branch 'CI-tests' into 'main'
CI ready to run

See merge request yannk/godot-third-person-basic-scene!3
2022-05-24 23:02:47 +02:00
1736143a8f merge aleajactaest 2022-05-24 22:59:03 +02:00
5720ff1def Merge branch '25-add-a-configuration-file-to-save-user-preferences' into 'main'
Resolve "Add a configuration file to save user preferences"

Closes #25

See merge request yannk/godot-third-person-basic-scene!2
2022-05-24 22:56:24 +02:00
5c084efca6 Merge branch '25-add-a-configuration-file-to-save-user-preferences' into aleajactaest 2022-05-20 00:00:52 +02:00
yannk
db63b223d3 Syntax error in path definition 2022-05-19 19:54:39 +02:00
YannK
267bf37046 Adding pre export stage with creation of commit.txt including branch and commit short hash - CI launched via commit message 2022-05-19 19:37:58 +02:00
YannK
96bcbb5454 Adding imported files 2022-05-19 19:36:53 +02:00
4535751b6d update godot version 2022-05-17 21:42:14 +02:00
b94760ffe1 adding joypad 2022-05-13 22:02:54 +02:00
yannk
52d8bdf306 Implementing first use of configuration file with music volume 2022-04-22 09:58:30 +02:00
yannk
3ce18ecbcd Adding basic functions to handle music volume with a config file to save user preferences 2022-04-21 23:51:45 +02:00
5597020a41 adding joypad camera move 2022-04-16 00:12:12 +02:00
yannk
b08acab104 Correcting typo and modifying folders names 2022-04-02 17:13:13 +02:00
yannk
a4d6a11976 Adding imported files to versionning for CI to work 2022-04-02 16:40:02 +02:00
yannk
11df53816c Versionning .godot/imported content for CI to work 2022-04-02 16:38:34 +02:00
yannk
552f147f7c Tweaking CI presets for basic manual use 2022-04-02 16:36:53 +02:00
yannk
8ac933869c Adding export presets for Linux and Windows 2022-04-02 16:36:09 +02:00
465 changed files with 2911 additions and 1216 deletions

8
.gitignore vendored
View file

@ -1,6 +1,12 @@
# Godot 4+ specific ignores
.godot/
#.godot/
Godot.zip
Godot_v4*linux.64.zip
Godot_v4*linux.64
*.old
# Changes to version imported subfolder of .godot (commented upward)
.godot/editor*/
.godot/shader*/
.godot/*.bin
.godot/\.*

View file

@ -1,40 +1,56 @@
image: khaganat/godot-export:4
stages:
- test
- pre-export
- export
variables:
EXPORT_NAME: khanat_client
EXPORT_NAME: 3rd_Person_3dclient_test
linux64_test:
stage: test
commit_text:
stage: pre-export
tags:
- Docker
script:
- mkdir -v -p $EXPORT_NAME$CI_COMMIT_SHORT_SHA
- godot -v --export --headless "Linux/X11" $EXPORT_NAME$CI_COMMIT_SHORT_SHA/$EXPORT_NAME$CI_COMMIT_SHORT_SHA.x86_64
- echo "$CI_COMMIT_BRANCH - $CI_COMMIT_SHORT_SHA" > commit.txt
artifacts:
name: $EXPORT_NAME$CI_COMMIT_SHORT_SHA$CI_JOB_NAME
paths:
- $EXPORT_NAME$CI_COMMIT_SHORT_SHA
- commit.txt
rules:
- if: '$CI_COMMIT_MESSAGE =~ /<debug>/'
when: always
linux64:
stage: export
tags:
- Docker
script:
- apt-get update && apt-get install -y mesa-vulkan-drivers
- mkdir -v -p $EXPORT_NAME-linux64-$CI_COMMIT_SHORT_SHA
- godot -v --export-debug --headless "Linux/X11" $EXPORT_NAME-$CI_COMMIT_SHORT_SHA/$EXPORT_NAME-$CI_COMMIT_SHORT_SHA.x86_64
artifacts:
name: $EXPORT_NAME-$CI_COMMIT_SHORT_SHA-$CI_JOB_NAME
paths:
- $EXPORT_NAME-$CI_COMMIT_SHORT_SHA
expire_in: 1 week
#except:
#- stable
#- develop
when: manual
rules:
- if: '$CI_COMMIT_MESSAGE =~ /<debug>/'
when: always
windows:
stage: test
stage: export
tags:
- Docker
script:
- mkdir -v -p $EXPORT_NAME$CI_COMMIT_SHORT_SHA
- godot -v --export --headless "Windows Desktop" $EXPORT_NAME$CI_COMMIT_SHORT_SHA/$EXPORT_NAME$CI_COMMIT_SHORT_SHA.exe
- mkdir -v -p $EXPORT_NAME-windows-$CI_COMMIT_SHORT_SHA
- godot -v --export-debug --headless "Windows Desktop" $EXPORT_NAME-$CI_COMMIT_SHORT_SHA/$EXPORT_NAME-$CI_COMMIT_SHORT_SHA.exe
artifacts:
name: $EXPORT_NAME$CI_COMMIT_SHORT_SHA$CI_JOB_NAME
name: $EXPORT_NAME-$CI_COMMIT_SHORT_SHA-$CI_JOB_NAME
paths:
- $EXPORT_NAME$CI_COMMIT_SHORT_SHA
#only:
# - stable
when: manual
- $EXPORT_NAME-$CI_COMMIT_SHORT_SHA
expire_in: 1 week
rules:
- if: '$CI_COMMIT_MESSAGE =~ /<debug>/'
when: always

View file

@ -0,0 +1,3 @@
source_md5="429b6363d0594911547726e3a95dbd59"
dest_md5="f6e8bcb1bbb72a012ef451601f3bfffc"

View file

@ -0,0 +1,3 @@
source_md5="11f968e659fa9e4cf61f62b1886c0a9a"
dest_md5="66855651ce90d3e50f9abaa2c1d8abad"

View file

@ -0,0 +1,3 @@
source_md5="61633c91b699271cb7f552e50d3e9bad"
dest_md5="36938e0b99b4932dd8874447ee336ef3"

View file

@ -0,0 +1,3 @@
source_md5="5113b46183a3ca9273f00699e9d9ff1c"
dest_md5="6fbab7586b3be714c75ce057b1cb4042"

View file

@ -0,0 +1,3 @@
source_md5="c742dbedc9bd0445fcdc5d7c91355d47"
dest_md5="70ebd217fb54a5e35a70200491195877"

View file

@ -0,0 +1,3 @@
source_md5="18b255d96952d8fd16508035813c1595"
dest_md5="c2db0f8d11d9a6549ba4b942fd167280"

View file

@ -0,0 +1,3 @@
source_md5="ff64f80093c851681274ccaaab1aefff"
dest_md5="2d9c0c8cdb3c691c23a36d052e6d9c4a"

View file

@ -0,0 +1,3 @@
source_md5="ff64f80093c851681274ccaaab1aefff"
dest_md5="2d9c0c8cdb3c691c23a36d052e6d9c4a"

View file

@ -0,0 +1,3 @@
source_md5="c2d73e0a7a31758af2c79237dee73012"
dest_md5="7419999a924fe2890d46e705dc92fa96"

View file

@ -0,0 +1,3 @@
source_md5="c2d73e0a7a31758af2c79237dee73012"
dest_md5="7419999a924fe2890d46e705dc92fa96"

View file

@ -0,0 +1,3 @@
source_md5="501055c42266d83ab2ae636a12af375f"
dest_md5="7439345d58e198bb1d64b79caeb34b69"

View file

@ -0,0 +1,3 @@
source_md5="501055c42266d83ab2ae636a12af375f"
dest_md5="7439345d58e198bb1d64b79caeb34b69"

View file

@ -0,0 +1,3 @@
source_md5="31fc305eb1d7d79fe1053156f92b59bf"
dest_md5="3baba5d8154b4602038fbb548e4651ac"

View file

@ -0,0 +1,3 @@
source_md5="8719a3ee53fde1c94a1f528778b0ce49"
dest_md5="c4f70b698db9b2b420af14d31212b9fb"

View file

@ -0,0 +1,3 @@
source_md5="8719a3ee53fde1c94a1f528778b0ce49"
dest_md5="c4f70b698db9b2b420af14d31212b9fb"

View file

@ -0,0 +1,3 @@
source_md5="39b4d69a92244b21bd2edb9f402e8aa6"
dest_md5="f9eac1acce88a54b1966ecbb134cc08b"

View file

@ -0,0 +1,3 @@
source_md5="39b4d69a92244b21bd2edb9f402e8aa6"
dest_md5="f9eac1acce88a54b1966ecbb134cc08b"

View file

@ -0,0 +1,3 @@
source_md5="166af68e564c805f182848ff1e03b879"
dest_md5="89818890168f05a267d63825f6fbf3cd"

View file

@ -0,0 +1,3 @@
source_md5="ced507b169c48f6b02bc7ef3e6c25128"
dest_md5="3a25dc57c41c707fc4d27df57998bb7d"

View file

@ -0,0 +1,3 @@
source_md5="dd139845ea7dae77c85940b5d36a3a71"
dest_md5="39101bc35670eb35773cee2a3838fc48"

View file

@ -0,0 +1,3 @@
source_md5="520d1bc4ecdf036923ed4ab4729c7393"
dest_md5="f689052a21c267192c8931f35961492f"

View file

@ -0,0 +1,3 @@
source_md5="ee894c5daac177cf9d150e9d4532e9cb"
dest_md5="ca4d9a5e79175fbe063acd037e401d75"

View file

@ -0,0 +1,3 @@
source_md5="a859a9c57e6601a3a36f225a2a4e1370"
dest_md5="5446ad9483bb20c8a5e43398e441793f"

View file

@ -0,0 +1,3 @@
source_md5="3a3513acf139505d53e5b160ae8f9666"
dest_md5="b7a443b1e6958072ecc1584164d0ddb7"

View file

@ -0,0 +1,3 @@
source_md5="bbd32a0ae64acd9ba5aedfc2cfcec6c1"
dest_md5="c57f666dc6f6506109bd7dc44bad8d97"

View file

@ -0,0 +1,3 @@
source_md5="12f4f13050fda086ff9633168becbe86"
dest_md5="5da36a6bacef81dafbf925fb6a4b84f9"

View file

@ -0,0 +1,3 @@
source_md5="707a76d7a7d3f084cbe956f18e679b8f"
dest_md5="828d6d86a9385e01c22b006adfc8c8e8"

View file

@ -0,0 +1,3 @@
source_md5="1e838b682b3e7dcc7a6bd1ce670e31a0"
dest_md5="446e95e3ef0d21b4cb975a4deb3ce1ab"

View file

@ -0,0 +1,3 @@
source_md5="96b0569fc5157c8177e9f0f3c033b4a0"
dest_md5="d752d1d7736159dff5b3b4e7b8fda58e"

View file

@ -0,0 +1,3 @@
source_md5="42cf07d21ce7bdf8b3d40ac4257554a4"
dest_md5="b11f0d3a5c9894f8277ec5690db5f710"

View file

@ -0,0 +1,3 @@
source_md5="b4daca848ab3d13ea5d29f12ca2ea7f3"
dest_md5="dcf323cec611afa7aa59a7cbff2551ac"

View file

@ -0,0 +1,3 @@
source_md5="142a41cf855eb73e2a5ba051dacea413"
dest_md5="b1f0a291bc3fbccfb4d1e36129dd6c5e"

View file

@ -0,0 +1,3 @@
source_md5="1b2ddd55e3a10534764b3c666303af0c"
dest_md5="30033d1c421fdf58f0635ae90aabd44d"

View file

@ -0,0 +1,3 @@
source_md5="008e6bc48c8eaa5d2855d57e6b0b8595"
dest_md5="66ede07e6468274c9c5202271cc565ad"

View file

@ -0,0 +1,3 @@
source_md5="008e6bc48c8eaa5d2855d57e6b0b8595"
dest_md5="754ddae30d133b38cafafe8f1510d66f"

View file

@ -0,0 +1,3 @@
source_md5="f270899858f8204b62043167ac8d9552"
dest_md5="d8a55905e5d6dce90471333f5f62ded8"

View file

@ -0,0 +1,3 @@
source_md5="f270899858f8204b62043167ac8d9552"
dest_md5="fe35528727ba09941f3df3d35b0a3485"

View file

@ -0,0 +1,3 @@
source_md5="cd5e0e3fba97e8b64cf301bbb350d7cf"
dest_md5="586ad86ed4b0e6f6b53be2840bb7fe18"

View file

@ -0,0 +1,3 @@
source_md5="cd5e0e3fba97e8b64cf301bbb350d7cf"
dest_md5="191a8fe226570be6b649cc01242c2a27"

View file

@ -0,0 +1,3 @@
source_md5="2759de5c01527bd9730b4d1838e6c938"
dest_md5="0afb48b2f8f3c407b186db94486f3927"

View file

@ -0,0 +1,3 @@
source_md5="2759de5c01527bd9730b4d1838e6c938"
dest_md5="9f509c77629751959c57776684135177"

View file

@ -0,0 +1,3 @@
source_md5="d8d09723b71ebb22bc31881877609622"
dest_md5="a15fd3ec77926385d04798cbf2d85bf5"

View file

@ -0,0 +1,3 @@
source_md5="d8d09723b71ebb22bc31881877609622"
dest_md5="c0d4ff319ae21c7ac11fb9b2fb3fc75d"

View file

@ -0,0 +1,3 @@
source_md5="2aaaafd5fe853746266cad7eafcc871e"
dest_md5="09dffd8d23ee151f7517e421a2875dd8"

View file

@ -0,0 +1,3 @@
source_md5="2aaaafd5fe853746266cad7eafcc871e"
dest_md5="2025b138736e96f5c441f73696874d0a"

View file

@ -0,0 +1,3 @@
source_md5="137201ae9563c760964063e122d587b7"
dest_md5="3ef666699216143fa12a7ab4d70ec123"

View file

@ -0,0 +1,3 @@
source_md5="137201ae9563c760964063e122d587b7"
dest_md5="16301919776c4088c86bc084877eceeb"

View file

@ -0,0 +1,3 @@
source_md5="7f0b42d1d6a4d3e646c558185f6711ea"
dest_md5="a91cb3ef2078f82544cd0703b8fdbb00"

View file

@ -0,0 +1,3 @@
source_md5="7f0b42d1d6a4d3e646c558185f6711ea"
dest_md5="0e652e4dfb383fbc2a2aa129258ddd76"

Some files were not shown because too many files have changed in this diff Show more