| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- return {
- summary = 'Create a view transform that looks from a position to target position.',
- description = [[
- Sets a view transform matrix that moves and orients camera to look at a target point.
- This is useful for changing camera position and orientation. The resulting Mat4 matrix can be
- passed to `lovr.graphics.transform()` directly (without inverting) before rendering the scene.
- The lookAt() function produces same result as target() after matrix inversion.
- ]],
- arguments = {
- {
- name = 'from',
- type = 'Vec3',
- description = 'The position of the viewer.'
- },
- {
- name = 'to',
- type = 'Vec3',
- description = 'The position of the target.'
- },
- {
- name = 'up',
- type = 'Vec3',
- default = 'Vec3(0, 1, 0)',
- description = 'The up vector of the viewer.'
- }
- },
- returns = {
- {
- name = 'm',
- type = 'Mat4',
- description = 'The original matrix.'
- }
- },
- related = {
- 'Mat4:target',
- 'Quat:direction'
- }
- }
|