mirror of https://github.com/qt/qt3d.git
27 lines
521 B
C++
27 lines
521 B
C++
// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
#include "pointlightblock.h"
|
|
|
|
PointLightBlock::PointLightBlock(Qt3DCore::QNode *parent)
|
|
: Qt3DRender::QShaderData(parent)
|
|
{
|
|
|
|
}
|
|
|
|
PointLightBlock::~PointLightBlock()
|
|
{
|
|
}
|
|
|
|
QList<Qt3DRender::QAbstractLight *> PointLightBlock::lights() const
|
|
{
|
|
return m_lights;
|
|
}
|
|
|
|
void PointLightBlock::addLight(Qt3DRender::QAbstractLight *light)
|
|
{
|
|
m_lights.append(light);
|
|
emit lightsChanged();
|
|
}
|
|
|