BsScriptGUITimeline.generated.h 1.5 KB

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