Implemented KrInitNodeInfo

This commit is contained in:
2020-06-21 22:42:10 -07:00
parent 0fc6ec1357
commit 4761bbc66b
34 changed files with 293 additions and 35 deletions

View File

@@ -14,6 +14,13 @@
#include "assert.h"
#include "KRStockGeometry.h"
/* static */
void KRDirectionalLight::InitNodeInfo(KrNodeInfo* nodeInfo)
{
KRLight::InitNodeInfo(nodeInfo);
// No additional members
}
KRDirectionalLight::KRDirectionalLight(KRScene &scene, std::string name) : KRLight(scene, name)
{