| 12345678910111213141516171819202122232425 |
- 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.'
- }
- },
- related = {
- 'Model:getAnimationCount',
- 'Model:getAnimationName',
- 'Model:animate'
- }
- }
|