PageRenderTime 109ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/llmessage/llfollowcamparams.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 61 lines | 29 code | 5 blank | 27 comment | 0 complexity | 420e4a1fcfd9fb2c4153db634c020af5 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file llfollowcamparams.h
  3. * @brief Follow camera parameters.
  4. *
  5. * $LicenseInfo:firstyear=2005&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #ifndef LL_FOLLOWCAM_PARAMS_H
  27. #define LL_FOLLOWCAM_PARAMS_H
  28. //Ventrella Follow Cam Script Stuff
  29. enum EFollowCamAttributes {
  30. FOLLOWCAM_PITCH = 0,
  31. FOLLOWCAM_FOCUS_OFFSET,
  32. FOLLOWCAM_FOCUS_OFFSET_X, //this HAS to come after FOLLOWCAM_FOCUS_OFFSET in this list
  33. FOLLOWCAM_FOCUS_OFFSET_Y,
  34. FOLLOWCAM_FOCUS_OFFSET_Z,
  35. FOLLOWCAM_POSITION_LAG,
  36. FOLLOWCAM_FOCUS_LAG,
  37. FOLLOWCAM_DISTANCE,
  38. FOLLOWCAM_BEHINDNESS_ANGLE,
  39. FOLLOWCAM_BEHINDNESS_LAG,
  40. FOLLOWCAM_POSITION_THRESHOLD,
  41. FOLLOWCAM_FOCUS_THRESHOLD,
  42. FOLLOWCAM_ACTIVE,
  43. FOLLOWCAM_POSITION,
  44. FOLLOWCAM_POSITION_X, //this HAS to come after FOLLOWCAM_POSITION in this list
  45. FOLLOWCAM_POSITION_Y,
  46. FOLLOWCAM_POSITION_Z,
  47. FOLLOWCAM_FOCUS,
  48. FOLLOWCAM_FOCUS_X, //this HAS to come after FOLLOWCAM_FOCUS in this list
  49. FOLLOWCAM_FOCUS_Y,
  50. FOLLOWCAM_FOCUS_Z,
  51. FOLLOWCAM_POSITION_LOCKED,
  52. FOLLOWCAM_FOCUS_LOCKED,
  53. NUM_FOLLOWCAM_ATTRIBUTES
  54. };
  55. //end Ventrella
  56. #endif //FOLLOWCAM_PARAMS_H