Fixed float edit problem (value member returns incorrect value)

This commit is contained in:
Rodolphe Suescun 2024-08-26 10:07:52 +02:00
parent c2ac2bb00a
commit 6da1ad6ea6
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,8 @@ extends Container
var float_value: float = 0.5
@export var value: float = 0.5 :
get:
return float_value
set(new_value):
set_value(new_value)