words on sand
from shri at drone-ah.com
about
posts
tags & stats
endeavours
excursions
Tag: Raylib
19
Jul 2025
Building Pong with Zig and Raylib #6: Font Size, Collision Bugs, and Refactors
In this one, we’ll tidy up our Pong implementation by addressing three key issues: 1. The score font is too small 2. ...
15
Jul 2025
Building Pong with Zig and Raylib #5: Show Score with dvui
In this episode, I finally add a score display to Pong using DVUI, a native Zig UI framework. The scoring logic was alr...
10
Jul 2025
Building Pong with Zig and Raylib - Part 4: Smarter Collisions, Cleaner Code
Change of Plans I was going to dive into menus and UI, but after sharing the early version of Pong on [ziggit.dev](htt...
07
Jul 2025
Building Pong in Zig with Raylib – Part 3: Edge Collisions, Scoring & Player Input
In this part, we round out the core gameplay of our Pong clone in Zig using raylib. By the end, we've got a working gam...
04
Jul 2025
Building Pong in Zig with Raylib – Part 2: Ball Movement & Paddle Collisions
In [Part 1](./1-setup.md) we set up the basics: a window, paddles, and a ball. In this episode, we go one step further ...
28
Jun 2025
Building Pong in Zig with Raylib – Part 1: Setup, Paddles, and Ball
A devlog-style walkthrough of setting up a Pong clone using Zig and raylib, covering setup and basic rendering.
27
Jun 2025
Under the Hood of triangle
In [this Let's Code video](https://youtu.be/8nA-a5Z1IDc) on [**shri codes**](http://www.youtube.com/@ShriCodesHere), I ...
08
May 2025
Basic Gameplay
The first goal was to get it working as far as the coding challenge itself. ## The Ship Spawning the ship itself was ...