COLORBLIND – Mini Jam 62 – 72 Hour Game Jam

Over the weekend a friend and I created a short, challenging, and fun platforming game. It is named COLORBLIND. We used the Godot game engine and a simple sprite sheet from Kenny. You can download and play the game on itch.io here: https://richyrich515.itch.io/colorblindWe plan to release an update to the game in the future to …

Lua Scripting – Frameworks Final Project

For my final project in frameworks I implemented Lua scripting to animate objects in the scene.This was done by binding C-functions in the engine to Lua scripts for each animated object. These scripts are called either on initialization of the object, or each frame depending on what you want to achieve. Features of this project:– …

Week 3 – Lighting

In this week I got basic lighting working. In this image only a single point light is present.It is planned to have directional, spot and ambient lighting in the future. I am basing this system on the same techniques described in Chapter 6 of Graphics Shaders: Theory and Practice by Mike Bailey and Steve Cunningham.