コード例 #1
0
ファイル: QCARUnity.cs プロジェクト: TavoVega11/Fantavo
 /// <summary>
 /// Sets a hint for the QCAR SDK
 /// Hints help the SDK to understand the developer's needs.
 /// However, depending on the device or SDK version the hints
 /// might not be taken into consideration.
 /// Returns false if the hint is unknown or deprecated.
 /// </summary>
 public static bool SetHint(QCARHint hint, int value)
 {
     return(QCARUnityImpl.SetHint(hint, value));
 }
コード例 #2
0
ファイル: QCAR.cs プロジェクト: Mthegamer/ARShooting01
 // Sets a hint for the QCAR SDK
 // Hints help the SDK to understand the developer's needs.
 // However, depending on the device or SDK version the hints
 // might not be taken into consideration.
 // Returns false if the hint is unknown or deprecated.
 public static bool SetHint(QCARHint hint, int value)
 {
     return(qcarSetHint((int)hint, value) == 1);
 }
コード例 #3
0
 /// <summary>
 /// Sets a hint for the QCAR SDK
 /// Hints help the SDK to understand the developer's needs.
 /// However, depending on the device or SDK version the hints
 /// might not be taken into consideration.
 /// Returns false if the hint is unknown or deprecated.
 /// </summary>
 public static bool SetHint(QCARHint hint, int value)
 {
     return QCARUnityImpl.SetHint(hint, value);
 }
コード例 #4
0
ファイル: QCAR.cs プロジェクト: Bogdan-p/ZXing.Net
 // Sets a hint for the QCAR SDK
 // Hints help the SDK to understand the developer's needs.
 // However, depending on the device or SDK version the hints
 // might not be taken into consideration.
 // Returns false if the hint is unknown or deprecated.
 public static bool SetHint(QCARHint hint, int value)
 {
     return qcarSetHint((int)hint, value) == 1;
 }