OcttKB Cross-Repo Sync (HTML to Raw)

This commit is contained in:
2023-11-12 23:52:08 +00:00
parent d67d70198d
commit c3be56ce20
10 changed files with 42 additions and 24 deletions

View File

@@ -0,0 +1,16 @@
created: 20221006205957260
creator: Octt
modified: 20231112235129459
modifier: Octt
tags: Development Gaming $:/i18n:en
title: Game development
<<^wikipediaframe "Video game development">>
* <<linkdescgit "Godot Engine" "https://godotengine.org" "feature-packed, cross-platform game engine to create 2D and 3D games from a unified interface" "https://github.com/godotengine">>
* [[raylib|https://www.raylib.com/]] --- //simple and easy-to-use library to enjoy videogames programming// --- [[[Git|https://github.com/raysan5/raylib]]]
* [[[PICO-8] Advanced Micro Platformer - Starter Kit|https://www.lexaloffle.com/bbs/?tid=28793]]
* <<YoutubeL rWtfClpWSb8 "Understanding framerate independence and deltatime">>
* [[Fix Your Timestep|https://gafferongames.com/post/fix_your_timestep/]] --- aka futile exercises in making games that run properly at a variable framerate, the only way that works is separating the game loop in 2 contexts, like [[in Unity|https://docs.unity3d.com/Manual/TimeFrameManagement.html]] (`FixedUpdate` and `Update`) or Godot (`_process` and `_physics_process`) --- <<HackernewsL 23649406>>