mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-22 01:36:42 +08:00
32 lines
1.4 KiB
C
32 lines
1.4 KiB
C
#ifndef SPINE_SPINE_DRAW_ORDER_TIMELINE_H
|
|
#define SPINE_SPINE_DRAW_ORDER_TIMELINE_H
|
|
|
|
#include "../base.h"
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SPINE_C_API spine_draw_order_timeline spine_draw_order_timeline_create(size_t frameCount);
|
|
|
|
SPINE_C_API void spine_draw_order_timeline_dispose(spine_draw_order_timeline self);
|
|
|
|
SPINE_C_API spine_rtti spine_draw_order_timeline_get_rtti(spine_draw_order_timeline self);
|
|
SPINE_C_API void spine_draw_order_timeline_apply(spine_draw_order_timeline self, spine_skeleton skeleton, float lastTime, float time,
|
|
spine_array_event pEvents, float alpha, spine_mix_blend blend, spine_mix_direction direction,
|
|
bool appliedPose);
|
|
SPINE_C_API size_t spine_draw_order_timeline_get_frame_count(spine_draw_order_timeline self);
|
|
SPINE_C_API void spine_draw_order_timeline_set_frame(spine_draw_order_timeline self, size_t frame, float time, spine_array_int drawOrder);
|
|
SPINE_C_API size_t spine_draw_order_timeline_get_frame_entries(spine_draw_order_timeline self);
|
|
SPINE_C_API spine_array_float spine_draw_order_timeline_get_frames(spine_draw_order_timeline self);
|
|
SPINE_C_API float spine_draw_order_timeline_get_duration(spine_draw_order_timeline self);
|
|
SPINE_C_API spine_array_property_id spine_draw_order_timeline_get_property_ids(spine_draw_order_timeline self);
|
|
SPINE_C_API spine_rtti spine_draw_order_timeline_rtti(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_DRAW_ORDER_TIMELINE_H */
|