mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 14:16:14 +03:00
17 lines
248 B
C++
17 lines
248 B
C++
#include "Pch.h"
|
|
#include "PostprocessingVolume.h"
|
|
|
|
namespace Flower
|
|
{
|
|
bool PostprocessVolumeComponent::changeSetting(const PostprocessVolumeSetting& in)
|
|
{
|
|
if (in != m_settings)
|
|
{
|
|
m_settings = in;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
} |