Advertisement
Guest User

Untitled

a guest
Mar 19th, 2014
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. module((...), camera_setup)
  2. presets = {
  3. {
  4. min_aspect_ratio = 1,
  5. max_aspect_ratio = 2,
  6. fov = 22.5,
  7. height_half_life = 0.2,
  8. interpolation = 0.2,
  9. near_front_plane_definition = {
  10. 2,
  11. 1.5,
  12. -8
  13. },
  14. far_front_plane_definition = {
  15. 28,
  16. 16,
  17. -16
  18. },
  19. near_reverse_plane_definition = {
  20. 20,
  21. 6,
  22. 10
  23. },
  24. far_reverse_plane_definition = {
  25. 28,
  26. 16,
  27. 10
  28. }
  29. },
  30. {
  31. min_aspect_ratio = 2,
  32. max_aspect_ratio = 1000,
  33. fov = 15,
  34. height_half_life = 0.2,
  35. interpolation = 0.2,
  36. near_front_plane_definition = {
  37. 2,
  38. 3,
  39. -6
  40. },
  41. far_front_plane_definition = {
  42. 24,
  43. 16,
  44. -10
  45. },
  46. near_reverse_plane_definition = {
  47. 20,
  48. 7.5,
  49. 8
  50. },
  51. far_reverse_plane_definition = {
  52. 24,
  53. 16,
  54. 8
  55. }
  56. },
  57. {
  58. min_aspect_ratio = 0,
  59. max_aspect_ratio = 1,
  60. fov = 22.5,
  61. height_half_life = 0.2,
  62. interpolation = 0.2,
  63. near_front_plane_definition = {
  64. 2,
  65. 1.5,
  66. -8
  67. },
  68. far_front_plane_definition = {
  69. 28,
  70. 16,
  71. -16
  72. },
  73. near_reverse_plane_definition = {
  74. 20,
  75. 6,
  76. 10
  77. },
  78. far_reverse_plane_definition = {
  79. 28,
  80. 16,
  81. 10
  82. }
  83. }
  84. }
  85. default_preset = {
  86. fov = 22.5,
  87. height_half_life = 0.2,
  88. interpolation = 0.2,
  89. near_front_plane_definition = {
  90. 2,
  91. 1.5,
  92. -8
  93. },
  94. far_front_plane_definition = {
  95. 28,
  96. 16,
  97. -16
  98. },
  99. near_reverse_plane_definition = {
  100. 20,
  101. 6,
  102. 10
  103. },
  104. far_reverse_plane_definition = {
  105. 28,
  106. 16,
  107. 10
  108. }
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement