Netflix Shuts Down Two Game Studios Including Oxenfree Developer Night School
Netflix Shuts Down Internal Game Development Studios Including Night School and Moonloot
Netflix is scaling back its internal video game development division, shuttering two more studios just weeks after releasing its latest title, according to reporting by Stephen Totilo of Game File and additional coverage from Variety. The streaming giant is closing the Los Angeles-based studio Night School—known for acquiring and developing the game Oxenfree—alongside Helsinki’s Moonloot, while also cutting down other internal game teams as part of a broader pivot away from building games from scratch.
The Tech TL;DR:
- Strategic Shift: Netflix is moving away from internal game development, closing Los Angeles developer Night School and Helsinki-based Moonloot.
Dismantling Internal Development Pipelines
The latest round of studio closures marks a sharp contraction in Netflix’s interactive entertainment strategy. Per reporting aggregated across Video Games Chronicle and Kotaku, the shutdown affects Night School, which released its latest game six weeks before the closure, and Moonloot in Helsinki. According to Mobilegamer.biz, the cuts extend beyond these two locations to impact wider internal game teams across the company’s development footprint.
Analyzing Codebase Retirement and Asset Preservation
#!/bin/bash
# Repository Archival and Dependency Audit Script
# Target: Automated manifest extraction for legacy pipelines
OUTPUT_DIR="./archived_repos_$(date +%Y%m%d)"
mkdir -p "$OUTPUT_DIR"
echo "Starting repository audit..."
# Iterate through local git directories and export logs
for d in */; do
if [ -d "$d/.git" ]; then
repo_name=$(basename "$d")
echo "Processing $repo_name..."
cd "$d" || continue
git log --all --pretty=format:"%h - %an, %ar : %s" > "../$OUTPUT_DIR/${repo_name}_git_log.txt"
# Check for dependency files
if [ -f "package.json" ]; then
cp package.json "../$OUTPUT_DIR/${repo_name}_package.json"
elif [ -f "requirements.txt" ]; then
cp requirements.txt "../$OUTPUT_DIR/${repo_name}_requirements.txt"
fi
cd ..
fi
done
echo "Audit complete. Manifests saved to $OUTPUT_DIR"
Strategic Outlook for Cloud and Gaming Infrastructure
Disclaimer: The technical analyses and security protocols detailed in this article are for informational purposes only. Always consult with certified IT and cybersecurity professionals before altering enterprise networks or handling sensitive data.