From 38c7fbd48d41d9e340140bc8070516463d088afc Mon Sep 17 00:00:00 2001 From: donghongyu Date: Mon, 29 Aug 2022 15:42:56 +0800 Subject: [PATCH] =?UTF-8?q?[Change]=20A=E3=80=81=E6=81=A2=E5=A4=8D?= =?UTF-8?q?=E5=BC=95=E5=AF=BC=E7=BA=BF=E6=B8=90=E5=8F=98=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: donghongyu --- .../src/main/java/com/mogo/map/utils/ObjectUtils.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/mogo-map/src/main/java/com/mogo/map/utils/ObjectUtils.java b/libraries/mogo-map/src/main/java/com/mogo/map/utils/ObjectUtils.java index 5dbc4c102f..a236deb05b 100644 --- a/libraries/mogo-map/src/main/java/com/mogo/map/utils/ObjectUtils.java +++ b/libraries/mogo-map/src/main/java/com/mogo/map/utils/ObjectUtils.java @@ -483,11 +483,11 @@ public class ObjectUtils { if (options.getColorValues() != null) { target.colorValues(options.getColorValues()); } -// if (options.isBrightOn()) { -// target.isBright = true; -// target.brightColor = options.getBrightColor(); -// target.brightSpeed = options.getBrightSpeed(); -// } + if (options.isBrightOn()) { + target.isBright = true; + target.brightColor = options.getBrightColor(); + target.brightSpeed = options.getBrightSpeed(); + } return target; }