| 123456789101112131415161718192021222324 |
- return {
- summary = 'Get the index of the material applied to a mesh.',
- description = 'Returns the index of the material applied to a mesh.',
- arguments = {
- mesh = {
- type = 'number',
- description = 'The index of a mesh.'
- }
- },
- returns = {
- material = {
- type = 'number',
- description = [[
- The index of the material applied to the mesh, or nil if the mesh does not have a material.
- ]]
- }
- },
- variants = {
- {
- arguments = { 'mesh' },
- returns = { 'material' }
- }
- }
- }
|