draw.lua 381 B

12345678910111213
  1. return {
  2. tag = 'callbacks',
  3. summary = 'Called continuously to render frames to the display.',
  4. description = [[
  5. This callback is called every frame. Use it to render the scene. If a VR headset is connected,
  6. anything rendered by this function will appear in the headset display.
  7. ]],
  8. arguments = {},
  9. returns = {},
  10. related = {
  11. 'lovr.headset.renderTo'
  12. }
  13. }