SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
4.2 KiB

4 years ago
  1. # Changelog
  2. All notable changes to this package will be documented in this file.
  3. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
  4. and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
  5. ## [2.1.4] - 2020-04-23
  6. Fix for URP and HDRP project migrating.
  7. ## [2.1.3] - 2020-04-08
  8. Fixes incorrect documentation merge
  9. ## [2.1.2] - 2020-04-06
  10. Better backcompat with 1.3.X streams
  11. ## [2.1.1] - 2020-03-27
  12. Better backcompat with 1.3.X streams
  13. ## [2.1.0] - 2020-03-25
  14. Roll up of 1.4.0, 1.4.1, 1.4.2 XR Management changes to the 2.X stream
  15. ## [2.0.8] - 2020-02-13
  16. Roll up of fixes from 1.3.9->1.3.11
  17. fix for UnityEngine.XR usage outside of ifdefs.
  18. fix for programatically added TPD's not saving
  19. Fixes for 2020.1 deprecation of features.
  20. ## [2.0.7] - 2019-12-18
  21. Fixes for 2020.1 deprecation of features. (from 1.3.9)
  22. Fixes switch compile errors. (from 1.3.8)
  23. Fix for PS4 compile error. (from 1.3.7)
  24. ## [2.0.6] - 2019-07-25
  25. Fix for incorrect selection logic (from 1.3.6)
  26. ## [2.0.5] - 2019-07-23
  27. merges 1.3.5 into the mainline stream
  28. ## [2.0.4] - 2019-06-07
  29. Update version number for Yamato.
  30. ## [2.0.3] - 2019-06-03
  31. More fixes to compiler error on non XR platforms (thanks again @zilys!)
  32. fixes unit test. removes knuckles finger input bindings
  33. ## [2.0.2] - 2019-03-12
  34. fixes compiler error on non XR platforms (thanks @zilys!)
  35. ## [2.0.1] - 2019-01-02
  36. fixes standalone compile error / forward port of 1.3.2 fix
  37. ## [2.0.0] - 2019-01-02
  38. breaking changes to API to allow pose data queries to indiciate what data was actually valid. this fixes the bug where position was being set to identity if only rotation was provided by the input system.
  39. Pose provider API has now changed to return a PoseDataFlags bitflag, the bitflag will indiciate what pieces of data was set on the output pose parameter.
  40. ```csharp
  41. public abstract bool TryGetPoseFromProvider(out Pose output)
  42. ```
  43. is now
  44. ```csharp
  45. public virtual PoseDataFlags GetPoseFromProvider(out Pose output)
  46. ```
  47. All pose providers in this package have been updated, as has the tracked pose driver code to correctly handle the returned bitflags. Any user derived users of this API will need to also update their code accordingly.
  48. New unit tests added for this case in the tracked pose driver
  49. ## [1.4.2] - 2020-03-24
  50. removes incorrect comment.
  51. ## [1.4.1] - 2020-03-23
  52. minor tweaks to version
  53. ## [1.4.0] - 2020-02-11
  54. Updates for XR Management UX Flow changes, the correct version to use for XR mgt is 2.1.0
  55. ## [1.3.11] - 2020-02-05
  56. fix for UnityEngine.XR usage outside of ifdefs.
  57. ## [1.3.10] - 2019-12-05
  58. fix for programatically added TPD's not saving
  59. ## [1.3.9] - 2019-11-12
  60. Fixes for 2020.1 deprecation of features.
  61. ## [1.3.8] - 2019-10-21
  62. Fixes switch compile errors.
  63. ## [1.3.7] - 2019-08-02
  64. Fix for PS4 compile error.
  65. ## [1.3.6] - 2019-07-25
  66. Fix for incorrect selection logic
  67. ## [1.3.5] - 2019-07-17
  68. Minor changes to the TPD and its associated editor
  69. - TPD defaults to "Center Eye - HMD Reference" and Reference Tracking off.
  70. - Warnings for when center eye is not picked, if the TPD is on a camera
  71. - "Center Eye renamed" to "Center Eye - HMD Reference" for clarity
  72. Adds XR Settings page when using com.unity.xr.management that allows automatic TPD attachment to cameras.
  73. ## [1.3.4] - 2019-07-07
  74. Verified package for 2019.3
  75. ## [1.3.2] - 2019-01-18
  76. fixes standalone only compile error
  77. ## [1.3.1] - 2018-12-17
  78. merges 1.0.3 into mainline branch.
  79. ## [1.3.0] - 2018-12-05
  80. Adds arm model support for 3dof controllers.
  81. ## [1.2.1] - 2018-10-25
  82. Makes the input settings menu pop up when you click the menu item
  83. ## [1.2.0] - 2018-10-15
  84. Adds the XR Binding Input Asset Seeder and associated documentation and tests
  85. ## [1.1.0] - 2018-10-11
  86. Moved some classes internal for cleaner docs.
  87. ## [1.0.3] - 2018-11-09
  88. fixes enums erroneously removed
  89. ## [1.0.2] - 2018-10-25
  90. fix for inconsistent line endings in trackedposedriver.cs
  91. ## [1.0.1] - 2018-10-10
  92. ported API documentation from the engine
  93. ## [1.0.0] - 2018-10-09
  94. release prep
  95. ## [0.0.4] - 2018-10-09
  96. ci fixes
  97. ## [0.0.3] - 2018-10-08
  98. fix for changelog values.
  99. ## [0.0.2] - 2018-10-08
  100. updated to latest upm package template
  101. ## [0.0.1] - 2018-10-08
  102. ### This is the first release of *Unity Package XR Tools*
  103. Initial move from XR Tools to Legacy Input Helper package