BsScriptTextureImportOptions.editor.generated.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //************** Copyright (c) 2016-2019 Marko Pintera ([email protected]). All rights reserved. *******************//
  3. #pragma once
  4. #include "BsScriptEditorPrerequisites.h"
  5. #include "BsScriptObject.h"
  6. #include "BsScriptImportOptions.editor.generated.h"
  7. #include "../../bsf/Source/Foundation/bsfCore/Image/BsPixelData.h"
  8. #include "../../bsf/Source/Foundation/bsfCore/Utility/BsCommonTypes.h"
  9. namespace bs
  10. {
  11. class TextureImportOptions;
  12. class BS_SCR_BED_EXPORT ScriptTextureImportOptions : public ScriptObject<ScriptTextureImportOptions, ScriptImportOptionsBase>
  13. {
  14. public:
  15. SCRIPT_OBJ(EDITOR_ASSEMBLY, EDITOR_NS, "TextureImportOptions")
  16. ScriptTextureImportOptions(MonoObject* managedInstance, const SPtr<TextureImportOptions>& value);
  17. SPtr<TextureImportOptions> getInternal() const;
  18. static MonoObject* create(const SPtr<TextureImportOptions>& value);
  19. private:
  20. static PixelFormat Internal_getformat(ScriptTextureImportOptions* thisPtr);
  21. static void Internal_setformat(ScriptTextureImportOptions* thisPtr, PixelFormat value);
  22. static bool Internal_getgenerateMips(ScriptTextureImportOptions* thisPtr);
  23. static void Internal_setgenerateMips(ScriptTextureImportOptions* thisPtr, bool value);
  24. static uint32_t Internal_getmaxMip(ScriptTextureImportOptions* thisPtr);
  25. static void Internal_setmaxMip(ScriptTextureImportOptions* thisPtr, uint32_t value);
  26. static bool Internal_getcpuCached(ScriptTextureImportOptions* thisPtr);
  27. static void Internal_setcpuCached(ScriptTextureImportOptions* thisPtr, bool value);
  28. static bool Internal_getsRGB(ScriptTextureImportOptions* thisPtr);
  29. static void Internal_setsRGB(ScriptTextureImportOptions* thisPtr, bool value);
  30. static bool Internal_getcubemap(ScriptTextureImportOptions* thisPtr);
  31. static void Internal_setcubemap(ScriptTextureImportOptions* thisPtr, bool value);
  32. static CubemapSourceType Internal_getcubemapSourceType(ScriptTextureImportOptions* thisPtr);
  33. static void Internal_setcubemapSourceType(ScriptTextureImportOptions* thisPtr, CubemapSourceType value);
  34. static void Internal_create(MonoObject* managedInstance);
  35. };
  36. }