A simple web app that renders a Blender 3D scene with custom text.
Run with docker run -p 8080:8080 gcr.io/as-a-service-dev/render
text
: The text to render, defaults toHELLO
.scene
: the name of the.blend
file to render (without the extension), defaults tobasic
, other supported values areoutrun
andoutrun-filter
.
Example: /?text=OUTRUN&scene=outrun
- Create a Blender scene, your scene must contain a text object with the name
Text
, - Add your
.blend
file in themodels/
folder,
- Build with
docker build . -t render
- Start with
docker run -p 8080:8080 render
- Open in your browser at
http://localhost:8080/?text=Hey