[arkit] Add missing ARHitTestResultType binding (#3872) (#3873)

- Fixes #3870: Missing ARHitTestResultType.EstimatedVerticalPlane binding for ARKit 1.5
(https://github.com/xamarin/xamarin-macios/issues/3870)
This commit is contained in:
Vincent Dondain 2018-04-04 20:22:01 -04:00 коммит произвёл Sebastien Pouliot
Родитель 1110d8fcb3
Коммит 3955be3f12
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -72,6 +72,8 @@ namespace ARKit {
public enum ARHitTestResultType : ulong {
FeaturePoint = 1 << 0,
EstimatedHorizontalPlane = 1 << 1,
[iOS (11,3)]
EstimatedVerticalPlane = 1 << 2,
ExistingPlane = 1 << 3,
ExistingPlaneUsingExtent = 1 << 4,
[iOS (11,3)]