mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 14:56:14 +03:00
28 lines
387 B
C++
28 lines
387 B
C++
#include "Pch.h"
|
|
#include "ReflectionCapture.h"
|
|
|
|
namespace Flower
|
|
{
|
|
bool ReflectionCaptureComponent::setUseIBLTexture(bool bState)
|
|
{
|
|
if (bState != m_bUseIBLTexture)
|
|
{
|
|
m_bUseIBLTexture = bState;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool ReflectionCaptureComponent::setRadius(float in)
|
|
{
|
|
if (in != m_radius)
|
|
{
|
|
m_radius = in;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|