Sdk/RenderSystem: Resolve skinning before rendering
This commit is contained in:
parent
8091e52348
commit
f6b0405f9b
|
|
@ -211,6 +211,7 @@ Nazara Development Kit:
|
|||
- ⚠️ BaseWidget::SetSize has been renamed to BaseWidget::Resize
|
||||
- Added BaseWidget::ForEachWidgetChild
|
||||
- Added experimental BoxLayout class
|
||||
- RenderSystem now resolve skinning before render
|
||||
|
||||
# 0.4:
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
#include <Nazara/Graphics/ColorBackground.hpp>
|
||||
#include <Nazara/Graphics/ForwardRenderTechnique.hpp>
|
||||
#include <Nazara/Graphics/SceneData.hpp>
|
||||
#include <Nazara/Graphics/SkinningManager.hpp>
|
||||
#include <Nazara/Graphics/SkyboxBackground.hpp>
|
||||
#include <Nazara/Math/Rect.hpp>
|
||||
#include <Nazara/Renderer/Renderer.hpp>
|
||||
|
|
@ -184,6 +185,8 @@ namespace Ndk
|
|||
m_coordinateSystemInvalidated = false;
|
||||
}
|
||||
|
||||
Nz::SkinningManager::Skin();
|
||||
|
||||
UpdateDynamicReflections();
|
||||
UpdatePointSpotShadowMaps();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue