| 12345678910111213141516171819202122232425 |
- return {
- summary = 'Check if the Model uses joints for skeletal animation.',
- description = 'Returns whether the Model has any skeletal animations.',
- arguments = {},
- returns = {
- jointed = {
- type = 'boolean',
- description = 'Whether the animation uses joint nodes for skeletal animation.'
- }
- },
- variants = {
- {
- arguments = {},
- returns = { 'jointed' }
- }
- },
- notes = [[
- This will return when there's at least one skin in the model, as returned by
- `ModelData:getSkinCount`.
- Even if this function returns true, the model could still have non-skeletal animations.
- Right now a model can only be drawn with one skeletal pose per frame.
- ]]
- }
|