Files
firefrost-operations-manual/docs/tasks/blender-cinematic-workflow/EditMode.ps1
Claude (Chronicler #48) 3de9764e5e Add Blender cinematic workflow documentation
Complete professional cinematic production infrastructure for Firefrost Gaming.
Moves editing from physically taxing Replay Mod to hand-accessible Blender workflow.

Task Directory (docs/tasks/blender-cinematic-workflow/):
- README.md: Task overview and success criteria
- DEPLOYMENT-GUIDE.md: Step-by-step installation (Blender, MCprep, Mineways)
  Written for Michael and Holly with detailed beginner-friendly instructions
- blender-cheat-sheet.md: Hand-accessible shortcuts reference
- EditMode.ps1: PowerShell launcher (auto-detects username, opens all tools)

Planning Document (docs/planning/):
- blender-cinematic-workflow.md: Strategic rationale, risk analysis, integration
  Source: Gemini brainstorming session (March 30, 2026)

Production Guide (docs/marketing/):
- cinematic-production-workflow.md: Quick reference for active filming
  Includes workflows for FOMO clips, YouTube trailers, build showcases

Key Features:
- Hand surgery accommodation (N-Panel, WASD Walk Mode, Emulate Numpad)
- Professional ray-traced rendering (Cycles engine)
- Non-destructive keyframe editing
- One-click launcher reduces startup friction
- 45-60 minute setup, 5-day learning path

Enables:
- FOMO campaign visual assets
- YouTube trailer production
- Soft launch marketing content
- Scalable content pipeline

Architecture: Minecraft Replay Mod → Mineways export → Blender + MCprep → Cycles render
Zero cost (all free software), documented thoroughly for Michael/Holly/future staff.

Created by: Chronicler #48
Source: Gemini technical brainstorming + Claude documentation integration
Status: Ready for deployment
2026-03-30 01:58:01 +00:00

87 lines
3.6 KiB
PowerShell

# --- Firefrost Gaming Cinematic Suite Launcher ---
# Created: March 30, 2026
# Purpose: One-click launch of replay folder + Mineways + Blender
# Author: Chronicler #48
Write-Host "🔥❄️ Firefrost Gaming Cinematic Suite" -ForegroundColor Cyan
Write-Host "Initializing tools..." -ForegroundColor Yellow
Write-Host ""
# Auto-detect current user (no hardcoded paths)
$username = $env:USERNAME
# 1. Open the Replay Mod folder
$replayPath = "C:\Users\$username\AppData\Roaming\.minecraft\replay_recordings"
Write-Host "Opening Replay Mod folder..." -ForegroundColor Green
if (Test-Path $replayPath) {
Invoke-Item $replayPath
Write-Host " ✓ Replay folder opened" -ForegroundColor Green
} else {
# Try alternative path for Forge port
$replayPath = "C:\Users\$username\AppData\Roaming\.minecraft\replays"
if (Test-Path $replayPath) {
Invoke-Item $replayPath
Write-Host " ✓ Replay folder opened (Forge path)" -ForegroundColor Green
} else {
Write-Host " ✗ Replay folder not found" -ForegroundColor Red
Write-Host " Tried: replay_recordings and replays" -ForegroundColor Yellow
Write-Host " Check your Minecraft installation path" -ForegroundColor Yellow
}
}
Write-Host ""
# 2. Launch Mineways
$minewaysPath = "C:\Program Files (x86)\Mineways\mineways.exe"
Write-Host "Launching Mineways..." -ForegroundColor Green
if (Test-Path $minewaysPath) {
Start-Process $minewaysPath
Write-Host " ✓ Mineways launched" -ForegroundColor Green
} else {
# Try 64-bit path
$minewaysPath = "C:\Program Files\Mineways\mineways.exe"
if (Test-Path $minewaysPath) {
Start-Process $minewaysPath
Write-Host " ✓ Mineways launched (64-bit)" -ForegroundColor Green
} else {
Write-Host " ✗ Mineways not found" -ForegroundColor Red
Write-Host " Expected at: C:\Program Files (x86)\Mineways\mineways.exe" -ForegroundColor Yellow
Write-Host " Or: C:\Program Files\Mineways\mineways.exe" -ForegroundColor Yellow
Write-Host " Check installation location" -ForegroundColor Yellow
}
}
Write-Host ""
# 3. Launch Blender
$blenderPath = "C:\Program Files\Blender Foundation\Blender 4.0\blender.exe"
Write-Host "Launching Blender..." -ForegroundColor Green
if (Test-Path $blenderPath) {
Start-Process $blenderPath
Write-Host " ✓ Blender launched (version 4.0)" -ForegroundColor Green
} else {
# Try newer versions
$blenderPath = "C:\Program Files\Blender Foundation\Blender 4.1\blender.exe"
if (Test-Path $blenderPath) {
Start-Process $blenderPath
Write-Host " ✓ Blender launched (version 4.1)" -ForegroundColor Green
} else {
$blenderPath = "C:\Program Files\Blender Foundation\Blender 4.2\blender.exe"
if (Test-Path $blenderPath) {
Start-Process $blenderPath
Write-Host " ✓ Blender launched (version 4.2)" -ForegroundColor Green
} else {
Write-Host " ✗ Blender not found" -ForegroundColor Red
Write-Host " Tried versions: 4.0, 4.1, 4.2" -ForegroundColor Yellow
Write-Host " Expected at: C:\Program Files\Blender Foundation\Blender X.X\blender.exe" -ForegroundColor Yellow
Write-Host " Check Blender installation" -ForegroundColor Yellow
}
}
}
Write-Host ""
Write-Host "🎬 Cinematic Suite ready!" -ForegroundColor Cyan
Write-Host "Fire + Frost + Foundation = Where Love Builds Legacy" -ForegroundColor Magenta
Write-Host ""
Write-Host "Need help? See: docs/tasks/blender-cinematic-workflow/DEPLOYMENT-GUIDE.md" -ForegroundColor DarkGray
Write-Host ""
Pause