diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-11 14:18:04 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-11 14:18:04 -0600 |
commit | 30d87229ed3638b1086ed25cac8d5acb62c0ea9a (patch) | |
tree | 1c78de72ea739372494f00426ef6c8e3ae73a35f /core/variant | |
parent | 9502f6faf41406e09c76e28b4640a1f685b6b5e5 (diff) | |
parent | 2126df2dfd50a8cee88dc5916bc24b447fd85e7d (diff) | |
download | redot-engine-30d87229ed3638b1086ed25cac8d5acb62c0ea9a.tar.gz |
Merge pull request #82845 from Hysterelius/master
Color: Expose OKHSL properties
Diffstat (limited to 'core/variant')
-rw-r--r-- | core/variant/variant_setget.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/variant/variant_setget.cpp b/core/variant/variant_setget.cpp index 1652f81d99..560067fc08 100644 --- a/core/variant/variant_setget.cpp +++ b/core/variant/variant_setget.cpp @@ -141,6 +141,10 @@ void register_named_setters_getters() { REGISTER_MEMBER(Color, h); REGISTER_MEMBER(Color, s); REGISTER_MEMBER(Color, v); + + REGISTER_MEMBER(Color, ok_hsl_h); + REGISTER_MEMBER(Color, ok_hsl_s); + REGISTER_MEMBER(Color, ok_hsl_l); } void unregister_named_setters_getters() { |