From e6fb8b69c85894994d649b4c7c59a6a1fa606c34 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Tue, 29 Aug 2023 04:17:09 -0600 Subject: add godot layer notes --- db/db_blog.psv | 3 +- live/blog/g/flappybird_godot_devlog_2.html | 10 +- live/blog/g/godot_layers_and_masks_notes.html | 164 ++++++++++++++++++++++++++ live/blog/index.html | 1 + live/blog/rss.xml | 26 +++- live/blog/sitemap.xml | 8 +- live/blog/tag/@english.html | 1 + live/blog/tag/@gamedev.html | 1 + live/blog/tag/@gdscript.html | 1 + live/blog/tag/@godot.html | 1 + src/blog/g/flappybird_godot_devlog_2.md | 2 +- src/blog/g/godot_layers_and_masks_notes.md | 25 ++++ src/blog/temp/godot_collision_layers_notes.md | 12 -- 13 files changed, 237 insertions(+), 18 deletions(-) create mode 100644 live/blog/g/godot_layers_and_masks_notes.html create mode 100644 src/blog/g/godot_layers_and_masks_notes.md delete mode 100644 src/blog/temp/godot_collision_layers_notes.md diff --git a/db/db_blog.psv b/db/db_blog.psv index cd255e5..16f2921 100644 --- a/db/db_blog.psv +++ b/db/db_blog.psv @@ -27,4 +27,5 @@ a/arch_logs_flooding_disk.md|1686824540.5338242|1686824666.933781|261eeee98ecbb2 a/torrenting_with_qbittorrent.md|1690164384.3800702|1690170668.4089742|413b7f2764a40fea97f2a22a942ff305|code,english,server,tools,tutorial a/jellyfin_server_with_sonarr_radarr.md|1690173014.2185652|1690173137.3785434|831c3b7c4183648dbc3be4547fe50686|code,english,server,tools,tutorial a/pastebin_alt_with_privatebin.md|1692524793.86829|1692527331.9501805|7605e02fc2b613617be56fdf43471664|code,english,server,tools,tutorial -g/flappybird_godot_devlog_2.md|1693178890.8924305|1693183054.9629443|f4e75adc747b9bf150a7126667185039|english,gamedev,gdscript,godot +g/flappybird_godot_devlog_2.md|1693178890.8924305|1693304066.9573946|a1b0a6483829aea59a6251b47da210c6|english,gamedev,gdscript,godot +g/godot_layers_and_masks_notes.md|1693303806.3574584|0.0|407b8f66cdde17ac2f8c113921805d98|english,gamedev,gdscript,godot diff --git a/live/blog/g/flappybird_godot_devlog_2.html b/live/blog/g/flappybird_godot_devlog_2.html index b7a5047..d4f764b 100644 --- a/live/blog/g/flappybird_godot_devlog_2.html +++ b/live/blog/g/flappybird_godot_devlog_2.html @@ -116,7 +116,7 @@

Porting to Godot 4

-

Disclaimer: I started the port back in Godot 4.0 something and left the project for a while, then opened the project again in Godot 4.1, and it didn’t ask to convert anything so probably nowadays the conversion is better.

+

Disclaimer: I started the port back in Godot 4.0 something and left the project for a while, then opened the project again in Godot 4.1, and it didn’t ask to convert anything so probably nowadays the conversion is better. Godot’s documentation is pretty useful, I looked at the GDScript reference and GDScript exports and that helped a lot.

General changes

These include the first changes for fixing some of the conflicting code to at least make it run (no gameplay) as well as project settings adjustments.