c3d.screen_render

Allows you to set your own way of drawing the rendered scene to the screen. default uses drawing chars to draw the scene. You can override this for example to have it use CrafOS-pc graphics mode. or perhaps save the render into a file !.

arguments

function c3d.screen_render(term,w,h,buffer)
    print("Hello from screen renderer!")
end

(will result in a black screen since the scene is not being drawn to it.)