| 1234567891011121314151617181920212223242526272829303132333435363738 |
- return {
- summary = 'Get the duration of an animation in the Model.',
- description = 'Returns the duration of an animation in the Model, in seconds.',
- arguments = {
- name = {
- type = 'string',
- description = 'The name of the animation.'
- },
- index = {
- type = 'number',
- description = 'The animation index.'
- }
- },
- returns = {
- duration = {
- type = 'number',
- description = 'The duration of the animation, in seconds.'
- }
- },
- variants = {
- {
- arguments = { 'index' },
- returns = { 'duration' }
- },
- {
- arguments = { 'name' },
- returns = { 'duration' }
- }
- },
- notes = [[
- The duration of an animation is calculated as the largest timestamp of all of its keyframes.
- ]],
- related = {
- 'Model:getAnimationCount',
- 'Model:getAnimationName',
- 'Model:animate'
- }
- }
|