BsScriptTangentRef.generated.h 894 B

12345678910111213141516171819202122232425262728293031
  1. #pragma once
  2. #include "BsScriptEnginePrerequisites.h"
  3. #include "BsScriptObject.h"
  4. #include "../../../bsf/Source/Foundation/bsfCore/Animation/BsAnimationUtility.h"
  5. #include "../../../bsf/Source/Foundation/bsfCore/Animation/BsAnimationUtility.h"
  6. #include "../../../bsf/Source/Foundation/bsfCore/Animation/BsAnimationUtility.h"
  7. namespace bs
  8. {
  9. struct __TangentRefInterop
  10. {
  11. KeyframeRef keyframeRef;
  12. TangentType type;
  13. };
  14. class BS_SCR_BE_EXPORT ScriptTangentRef : public ScriptObject<ScriptTangentRef>
  15. {
  16. public:
  17. SCRIPT_OBJ(ENGINE_ASSEMBLY, "BansheeEngine", "TangentRef")
  18. static MonoObject* box(const __TangentRefInterop& value);
  19. static __TangentRefInterop unbox(MonoObject* value);
  20. static TangentRef fromInterop(const __TangentRefInterop& value);
  21. static __TangentRefInterop toInterop(const TangentRef& value);
  22. private:
  23. ScriptTangentRef(MonoObject* managedInstance);
  24. };
  25. }