From ed646b5fb43ade60a186c673c273c65e7eb4dd8d Mon Sep 17 00:00:00 2001 From: Minhyuk Kim Date: Wed, 7 Aug 2024 15:13:10 +0900 Subject: [PATCH] Fix Android BatteryTemperature descriptions (#30) --- .../MobileSupportThermal/Runtime/Scripts/Thermal.Android.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/MobileSupportThermal/Runtime/Scripts/Thermal.Android.cs b/Packages/MobileSupportThermal/Runtime/Scripts/Thermal.Android.cs index d9f2348..a821d75 100644 --- a/Packages/MobileSupportThermal/Runtime/Scripts/Thermal.Android.cs +++ b/Packages/MobileSupportThermal/Runtime/Scripts/Thermal.Android.cs @@ -15,7 +15,7 @@ partial class Thermal public static class Android { /// - /// The latest battery temperature multiplied by 100 in Celsius. + /// The latest battery temperature multiplied by 10 in Celsius. /// Thermal.StartMonitoring() is required to get the latest value. /// public static int? LatestBatteryTemperature { get; private set; } @@ -30,7 +30,7 @@ public static class Android /// Event that is sent when the battery temperature is changed. /// Thermal.StartMonitoring() is required to get the latest value. /// - /// The battery temperature multiplied by 100 in Celsius. + /// The battery temperature multiplied by 10 in Celsius. public static event Action OnBatteryTemperatureChanged; ///