This commit is contained in:
Qi Jiang 2019-06-05 16:24:21 -07:00
Родитель 3e77c8d67c
Коммит 43d97f5e3d
1 изменённых файлов: 6 добавлений и 5 удалений

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

@ -6,10 +6,10 @@ using System;
public class Utils
{
#if UNITY_IOS && !UNITY_EDITOR
[DllImport("__Internal")]
static extern float GetBatteryTempiOS();
#endif
//#if UNITY_IOS && !UNITY_EDITOR
// [DllImport("__Internal")]
// static extern float GetBatteryTempiOS();
//#endif
const int baselineBestOfCountPerIter = 3;
@ -218,7 +218,8 @@ public class Utils
float temp = intent.Call<int>("getIntExtra", "temperature", 0) / 10.0f; // temp now
return temp;
#elif UNITY_IOS && !UNITY_EDITOR
return GetBatteryTempiOS();
//return GetBatteryTempiOS();
return 0f;
#else
return 0f;
#endif