Files
directx-plane-game/Graphics2/Graphics2.cpp
2022-02-23 12:07:57 +00:00

19 lines
377 B
C++

#include "Graphics2.h"
Graphics2 app;
void Graphics2::CreateSceneGraph()
{
SceneGraphPointer sceneGraph = GetSceneGraph();
// This is where you add nodes to the scene graph
}
void Graphics2::UpdateSceneGraph()
{
SceneGraphPointer sceneGraph = GetSceneGraph();
// This is where you make any changes to the local world transformations to nodes
// in the scene graph
}