mirror of https://github.com/axmolengine/axmol.git
89 lines
2.8 KiB
Lua
89 lines
2.8 KiB
Lua
|
|
--------------------------------
|
|
-- @module SkeletonAnimation
|
|
-- @extend SkeletonRenderer
|
|
-- @parent_module sp
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setStartListener
|
|
-- @param self
|
|
-- @param #function listener
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setTrackEventListener
|
|
-- @param self
|
|
-- @param #spTrackEntry entry
|
|
-- @param #function listener
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setTrackCompleteListener
|
|
-- @param self
|
|
-- @param #spTrackEntry entry
|
|
-- @param #function listener
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setTrackStartListener
|
|
-- @param self
|
|
-- @param #spTrackEntry entry
|
|
-- @param #function listener
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setCompleteListener
|
|
-- @param self
|
|
-- @param #function listener
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setTrackEndListener
|
|
-- @param self
|
|
-- @param #spTrackEntry entry
|
|
-- @param #function listener
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setEventListener
|
|
-- @param self
|
|
-- @param #function listener
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setMix
|
|
-- @param self
|
|
-- @param #string fromAnimation
|
|
-- @param #string toAnimation
|
|
-- @param #float duration
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] setEndListener
|
|
-- @param self
|
|
-- @param #function listener
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] clearTracks
|
|
-- @param self
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#SkeletonAnimation] clearTrack
|
|
-- @param self
|
|
-- @return SkeletonAnimation#SkeletonAnimation self (return value: sp.SkeletonAnimation)
|
|
|
|
return nil
|