2
0

BsScriptCReflectionProbe.generated.h 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. #include "Wrappers/BsScriptComponent.h"
  4. #include "../../../bsf/Source/Foundation/bsfCore/Renderer/BsReflectionProbe.h"
  5. #include "Math/BsVector3.h"
  6. namespace bs
  7. {
  8. class CReflectionProbe;
  9. class Texture;
  10. class BS_SCR_BE_EXPORT ScriptCReflectionProbe : public TScriptComponent<ScriptCReflectionProbe, CReflectionProbe>
  11. {
  12. public:
  13. SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "ReflectionProbe")
  14. ScriptCReflectionProbe(MonoObject* managedInstance, const GameObjectHandle<CReflectionProbe>& value);
  15. private:
  16. static ReflectionProbeType Internal_getType(ScriptCReflectionProbe* thisPtr);
  17. static void Internal_setType(ScriptCReflectionProbe* thisPtr, ReflectionProbeType type);
  18. static float Internal_getRadius(ScriptCReflectionProbe* thisPtr);
  19. static void Internal_setRadius(ScriptCReflectionProbe* thisPtr, float radius);
  20. static void Internal_getExtents(ScriptCReflectionProbe* thisPtr, Vector3* __output);
  21. static void Internal_setExtents(ScriptCReflectionProbe* thisPtr, Vector3* extents);
  22. static MonoObject* Internal_getCustomTexture(ScriptCReflectionProbe* thisPtr);
  23. static void Internal_setCustomTexture(ScriptCReflectionProbe* thisPtr, MonoObject* texture);
  24. static void Internal_capture(ScriptCReflectionProbe* thisPtr);
  25. };
  26. }