This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#pragma once
#include "v8datamodel/InputObject.h"
#include "v8datamodel/Lighting.h"
#include "PostEffect.h"
namespace RBX {
extern const char* const sBlurEffect;
class BlurEffect : public DescribedCreatable<BlurEffect, PostEffect, sBlurEffect, Reflection::ClassDescriptor::PERSISTENT>
{
private:
typedef DescribedCreatable<BlurEffect, PostEffect, sBlurEffect, Reflection::ClassDescriptor::PERSISTENT> Super;
public:
BlurEffect();
void setSize(int value);
int getSize() const { return std::min(56, std::max(0, Size)); }
bool isActive;
protected:
int Size;
};
}