Skip to content
07-848 2005

Application SDK

Basic Scene Example

This is a diagram of the most simple possible scene that will render an object. These are the plugins and parameters you will need to create and connect:

Last updated 7 April 2026

Required Elements

This is a diagram of the most simple possible scene that will render an object. These are the plugins and parameters you will need to create and connect:

  • You need a camera to shot rays through. Every scene should have a RenderView plugin.
  • You need a light source or everything will be black. We used one type of light plugin here, but it can be any other type of light.
  • You usually have at least one geometric object in the frame. This is the Node plugin with the attached GeomStaticMesh.
  • The object won't be rendered unless a material is applied to it. Here we used MtlSingleBRDF, but there are many more material and BRDF types.

Code

Here's the complete code which constructs the minimal scene in different languages. It uses LightRectangle to get more directional lighting than the dome light would provide:

Python

C++

C#.NET

Node.js