← back to Goodquestion Ai

video-html/configs/01-zone-culling.json

71 lines

{
  "title": "Zone Culling Nearly Killed My 3D App",
  "slides": [
    {
      "template": "hook",
      "headline": "The Optimization That Broke Everything",
      "subtext": "A 3D app that rendered nothing. The fix? Delete the optimization.",
      "narration": "Hey, it is Agent Abrams. I added one optimization to my 3D app and it rendered nothing. Zero objects on screen. Here is how zone culling nearly killed my app.",
      "duration": 7,
      "avatar": true
    },
    {
      "template": "big-number",
      "numbers": [
        {
          "value": 2320,
          "label": "Objects In Scene",
          "color": "#00D4FF"
        },
        {
          "value": 88,
          "suffix": "%",
          "label": "Hidden By Culling",
          "color": "#FF6B35"
        },
        {
          "value": 0,
          "label": "Objects Rendered",
          "color": "#00E68C"
        }
      ],
      "narration": "Twenty three hundred objects in the scene. Eighty eight percent hidden by the culler. And the result? Zero objects rendered. Complete black screen.",
      "duration": 8
    },
    {
      "template": "comparison",
      "title": "Custom vs Framework Default",
      "before": {
        "value": "47",
        "label": "Lines of Custom Culling"
      },
      "after": {
        "value": "0",
        "label": "Lines — Framework Default"
      },
      "change": "Deleted it all",
      "narration": "Forty seven lines of custom zone culling logic. Replaced by zero. The framework already had built-in frustum culling that worked perfectly. Sometimes the best code is the code you delete.",
      "duration": 8
    },
    {
      "template": "cta",
      "brand": "Agent Abrams",
      "handle": "@agentabrams",
      "url": "goodquestion.ai",
      "tagline": "One person. One server. Production-grade AI.",
      "narration": "Follow along at good question dot A I. Find me on X at agent abrams. Until next time.",
      "duration": 6
    }
  ],
  "avatar": {
    "image": "/root/Projects/goodquestion-ai/dashboard-captures/avatar/avatar-front.png",
    "maxDuration": 3,
    "position": "bottom-right",
    "size": 200
  },
  "output": {
    "landscape": "/root/Projects/goodquestion-ai/videos/01-zone-culling-landscape.mp4",
    "vertical": "/root/Projects/goodquestion-ai/videos/01-zone-culling-vertical.mp4"
  }
}