Add initial support for skeletal entities / components

This commit is contained in:
SirLynix
2022-08-27 03:07:48 +02:00
parent 01f3f350fe
commit 50ed8b4028
55 changed files with 919 additions and 131 deletions

View File

@@ -14,6 +14,7 @@
namespace Nz
{
class InstancedRenderable;
class SkeletonInstance;
class WorldInstance;
class NAZARA_GRAPHICS_API FramePipelinePass
@@ -30,6 +31,7 @@ namespace Nz
struct VisibleRenderable
{
const InstancedRenderable* instancedRenderable;
const SkeletonInstance* skeletonInstance;
const WorldInstance* worldInstance;
Recti scissorBox;
};