27 lines
738 B
TypeScript
27 lines
738 B
TypeScript
import { ForgeProject } from "@/types";
|
|
|
|
export const ACTIVE_BUILD: ForgeProject = {
|
|
id: "pixelpals",
|
|
name: "PixelPals",
|
|
status: "Alpha",
|
|
engine: "Godot 4.x",
|
|
description:
|
|
"A mobile-first creature collection game focusing on procedural behaviors and lightweight state-management.",
|
|
highlights: [
|
|
"State-machine AI",
|
|
"Custom Shader Pipelines",
|
|
"Mobile-optimized Loops",
|
|
],
|
|
externalLink: "/projects/pixelpals", // Link to your internal portfolio or a dedicated site
|
|
changelog: [
|
|
{
|
|
date: "2026-02-03",
|
|
update: "Refined touch-input latency for mobile devices.",
|
|
},
|
|
{
|
|
date: "2026-01-25",
|
|
update: "Integrated local SQLite database for creature persistence.",
|
|
},
|
|
],
|
|
};
|