BsScriptGUITimeline.generated.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. #pragma once
  2. #include "BsScriptEditorPrerequisites.h"
  3. #include "Wrappers/GUI/BsScriptGUIElement.h"
  4. #include "Math/BsVector2I.h"
  5. namespace bs
  6. {
  7. class GUITimeline;
  8. class BS_SCR_BED_EXPORT ScriptGUITimeline : public TScriptGUIElement<ScriptGUITimeline>
  9. {
  10. public:
  11. SCRIPT_OBJ(EDITOR_ASSEMBLY, "BansheeEditor", "GUITimeline")
  12. ScriptGUITimeline(MonoObject* managedInstance, GUITimeline* value);
  13. private:
  14. static void Internal_setRange(ScriptGUIElementBaseTBase* thisPtr, float range);
  15. static float Internal_getRange(ScriptGUIElementBaseTBase* thisPtr);
  16. static void Internal_setOffset(ScriptGUIElementBaseTBase* thisPtr, float offset);
  17. static float Internal_getOffset(ScriptGUIElementBaseTBase* thisPtr);
  18. static void Internal_setFPS(ScriptGUIElementBaseTBase* thisPtr, uint32_t FPS);
  19. static uint32_t Internal_getFPS(ScriptGUIElementBaseTBase* thisPtr);
  20. static void Internal_setMarkedFrame(ScriptGUIElementBaseTBase* thisPtr, uint32_t index);
  21. static uint32_t Internal_setMarkedFrame0(ScriptGUIElementBaseTBase* thisPtr);
  22. static uint32_t Internal_getFrame(ScriptGUIElementBaseTBase* thisPtr, Vector2I* pixelCoords);
  23. static float Internal_getTime(ScriptGUIElementBaseTBase* thisPtr, int32_t pixel);
  24. static int32_t Internal_getOffset0(ScriptGUIElementBaseTBase* thisPtr, float time);
  25. static float Internal_getTimeForFrame(ScriptGUIElementBaseTBase* thisPtr, int32_t index);
  26. static void Internal_setPadding(ScriptGUIElementBaseTBase* thisPtr, uint32_t padding);
  27. static uint32_t Internal_getPadding(ScriptGUIElementBaseTBase* thisPtr);
  28. };
  29. }