Google News
logo
Babylon.js - Quiz(MCQ)
Which of the following initiates the render loop, which refreshes and renders the scene continually?
A)
engine.Render(function () { scene.render(); });
B)
run.LoopRender(function () { scene.render(); });
C)
engine.runRenderLoop(function () { scene.render(); });
D)
All of the above

Correct Answer :   engine.runRenderLoop(function () { scene.render(); });


Explanation : engine.runRenderLoop(function () { scene.render(); }); initiates the render loop, which refreshes and renders the scene continually.

Advertisement