MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / bakeProbes

Method bakeProbes

Engine/source/renderInstance/renderProbeMgr.cpp:657–670  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

655}
656
657void RenderProbeMgr::bakeProbes()
658{
659 Vector<ReflectionProbe*> probes;
660
661 Scene::getRootScene()->findObjectByType<ReflectionProbe>(probes);
662
663 for (U32 i = 0; i < probes.size(); i++)
664 {
665 if (probes[i]->isClientObject())
666 continue;
667
668 bakeProbe(probes[i]);
669 }
670}
671
672//=============================================================================
673// Forward Rendering functions

Callers 1

renderProbeMgr.cppFile · 0.80

Calls 2

isClientObjectMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected