ViewMask.lua 453 B

123456789101112131415161718192021
  1. return {
  2. description = 'The different eyes a Layer can show up in',
  3. values = {
  4. {
  5. name = 'both',
  6. description = 'The layer will show up in both eyes.'
  7. },
  8. {
  9. name = 'left',
  10. description = 'The layer will only show up in the left eye.'
  11. },
  12. {
  13. name = 'right',
  14. description = 'The layer will only show up in the right eye.'
  15. }
  16. },
  17. related = {
  18. 'Layer:getViewMask',
  19. 'Layer:setViewMask'
  20. }
  21. }