CLI
List built-in library assets:
ftc list materials
ftc list objects
ftc list scenes
Validate a scene:
ftc check --scene examples/mvp.ft
Shaded preview render:
ftc render --scene examples/mvp.ft
Higher-quality preview edges:
ftc render --scene examples/mvp.ft --aa 4
Watch and re-render on save:
ftc render --scene examples/mvp.ft --watch
Ray tracer:
ftc ray --scene examples/glass.ft
Ray tracer with supersampling:
ftc ray --scene examples/glass.ft --aa 4
Path trace:
ftc path --scene examples/glass.ft --spp 64 --bounces 8
Benchmark acceleration backends:
ftc bench --scene examples/mvp.ft --iterations 5 --warmup 1
Notes:
- Output defaults to the input scene path with
.png renderis a fast shaded preview path with materials but without shadow tracingrenderandraysupport--aafor camera supersamplingraysupports progressive tile updates and debug AOVspathsupports adaptive sampling controls and preview overwritescheck,render,ray, andpathsupport--watchto rerun when the scene file changes- current
--watchtracks the scene file itself, not imported files yet