Condition with #DISDAYTIME# is not working

Hi!

I am working on a watchface that will change background based on day/night.

I used #DISDAYTIME# and a condition $#DISDAYTIME#==0?“0”:“100”$ to change Transparency of certain elements.
It’s working in the editor, but when I load it on to my watch - Sony Smartwatch 3, the text (value of #DISDAYTIME#) is correct but all layers are invisible like if it was giving back always “true”.

Here is my test: Mellin - Day/Night (waiting - Compass) - watch face for Apple Watch, Samsung Gear S3, Huawei Watch, and more - Facer
(it is still an early idea, so not much is in there, but a core feature is not working).

And yes I tried:
$#DISDAYTIME#==false?“0”:“100”$ (same effect)
$#DISDAYTIME#==“0”?“0”:“100”$ (don’t work at all)
$#DISDAYTIME#==“false”?“0”:“100”$ (don’t work at all)

Any ideas?

Hey Mellin,
I haven’t used the tag yet, but here are some other thread - same topic


There may be something in there that’s helpful

John

Thanks!
I fount 2 that work for my Sony smartwatch 3:
$#DISDAYTIME#=true?0:100$
$#DISDAYTIME#=true?100:0$