[NET 6 Attribute Conversion] ARKit (#13661)

This commit is contained in:
Chris Hamons 2022-01-11 10:21:03 -06:00 коммит произвёл GitHub
Родитель 16358a7963
Коммит 3a1b06e5d5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 6 удалений

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

@ -11,18 +11,18 @@ using ObjCRuntime;
namespace ARKit {
public partial class ARSkeleton {
#if !NET
[iOS (14,0)]
#else
#if NET
[SupportedOSPlatform ("ios14.0")]
#else
[iOS (14,0)]
#endif
[DllImport (Constants.ARKitLibrary)]
static extern IntPtr /* NSString */ ARSkeletonJointNameForRecognizedPointKey (/* NSString */ IntPtr recognizedPointKey);
#if !NET
[iOS (14,0)]
#else
#if NET
[SupportedOSPlatform ("ios14.0")]
#else
[iOS (14,0)]
#endif
public static NSString? CreateJointName (NSString recognizedPointKey)
{