diff options
author | Jakob Stendahl <jakobste@uio.no> | 2021-10-06 17:29:58 +0200 |
---|---|---|
committer | Jakob Stendahl <jakobste@uio.no> | 2021-10-06 17:29:58 +0200 |
commit | 3af8c73910997a0a6b766a3eb1d624a327356bbd (patch) | |
tree | 4934424439d4016db1d5d042d7e301fffe93f56d /NeoRuntime/Runtime/luxcena_neo/neo_behaviour.py | |
parent | 012e5c6ecdc16c41d557db64610f29d38c833812 (diff) | |
download | Luxcena-Neo-3af8c73910997a0a6b766a3eb1d624a327356bbd.tar.gz Luxcena-Neo-3af8c73910997a0a6b766a3eb1d624a327356bbd.zip |
:sparkles: Add Color helper class (should be made the default for ColorVariable)
Diffstat (limited to 'NeoRuntime/Runtime/luxcena_neo/neo_behaviour.py')
-rw-r--r-- | NeoRuntime/Runtime/luxcena_neo/neo_behaviour.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NeoRuntime/Runtime/luxcena_neo/neo_behaviour.py b/NeoRuntime/Runtime/luxcena_neo/neo_behaviour.py index dc4609c..5c89ca0 100644 --- a/NeoRuntime/Runtime/luxcena_neo/neo_behaviour.py +++ b/NeoRuntime/Runtime/luxcena_neo/neo_behaviour.py @@ -2,7 +2,7 @@ import json from os import path from enum import Enum from .strip import detect_format_convert_color -from .color_utils import rgb_from_24bit, hex_from_24bit +from .color_utils import rgb_from_twentyfour_bit, hex_from_twentyfour_bit class NeoBehaviour: """ |