BsScriptScreenSpaceReflectionsSettings.generated.h 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. #include "BsScriptObject.h"
  4. namespace bs
  5. {
  6. struct ScreenSpaceReflectionsSettings;
  7. class BS_SCR_BE_EXPORT ScriptScreenSpaceReflectionsSettings : public ScriptObject<ScriptScreenSpaceReflectionsSettings>
  8. {
  9. public:
  10. SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "ScreenSpaceReflectionsSettings")
  11. ScriptScreenSpaceReflectionsSettings(MonoObject* managedInstance, const SPtr<ScreenSpaceReflectionsSettings>& value);
  12. SPtr<ScreenSpaceReflectionsSettings> getInternal() const { return mInternal; }
  13. static MonoObject* create(const SPtr<ScreenSpaceReflectionsSettings>& value);
  14. private:
  15. SPtr<ScreenSpaceReflectionsSettings> mInternal;
  16. static void Internal_ScreenSpaceReflectionsSettings(MonoObject* managedInstance);
  17. static bool Internal_getenabled(ScriptScreenSpaceReflectionsSettings* thisPtr);
  18. static void Internal_setenabled(ScriptScreenSpaceReflectionsSettings* thisPtr, bool value);
  19. static uint32_t Internal_getquality(ScriptScreenSpaceReflectionsSettings* thisPtr);
  20. static void Internal_setquality(ScriptScreenSpaceReflectionsSettings* thisPtr, uint32_t value);
  21. static float Internal_getintensity(ScriptScreenSpaceReflectionsSettings* thisPtr);
  22. static void Internal_setintensity(ScriptScreenSpaceReflectionsSettings* thisPtr, float value);
  23. static float Internal_getmaxRoughness(ScriptScreenSpaceReflectionsSettings* thisPtr);
  24. static void Internal_setmaxRoughness(ScriptScreenSpaceReflectionsSettings* thisPtr, float value);
  25. };
  26. }