| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- return {
- summary = 'Get a color property of the Material.',
- description = [[
- Returns a color property for a Material. Different types of colors are supported for different
- lighting parameters. Colors default to `(1.0, 1.0, 1.0, 1.0)` and are gamma corrected.
- ]],
- arguments = {
- {
- name = 'colorType',
- type = 'MaterialColor',
- default = [['diffuse']],
- description = 'The type of color to get.'
- }
- },
- returns = {
- {
- name = 'r',
- type = 'number',
- description = 'The red component of the color.'
- },
- {
- name = 'g',
- type = 'number',
- description = 'The green component of the color.'
- },
- {
- name = 'b',
- type = 'number',
- description = 'The blue component of the color.'
- },
- {
- name = 'a',
- type = 'number',
- description = 'The alpha component of the color.'
- }
- },
- related = {
- 'MaterialColor',
- 'lovr.graphics.setColor'
- }
- }
|