| 1234567891011121314151617181920212223242526272829303132 |
- return {
- tag = 'headset-misc',
- summary = 'Get the predicted display time.',
- description = [[
- Returns the estimated time in the future at which the light from the pixels of the current frame
- will hit the eyes of the user.
- This can be used as a replacement for `lovr.timer.getTime` for timestamps that are used for
- rendering to get a smoother result that is synchronized with the display of the headset.
- ]],
- arguments = {},
- returns = {
- time = {
- type = 'number',
- description = 'The predicted display time, in seconds.'
- }
- },
- variants = {
- {
- arguments = {},
- returns = { 'time' }
- }
- },
- notes = [[
- This has a different epoch than `lovr.timer.getTime`, so it is not guaranteed to be close to
- that value.
- ]],
- related = {
- 'lovr.headset.getDeltaTime',
- 'lovr.timer.getTime'
- }
- }
|