/// <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)); }
// 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); }
/// <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); }
// 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; }