Fix unit conversion not working when modifying value while playing animation.

This commit is contained in:
Tanasart 2025-01-14 14:17:22 +07:00
parent 7de4b56e23
commit e305ae3793
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -1575,7 +1575,7 @@ function NodeValue(_name, _node, _connect, _type, _value, _tooltip = "") constru
attributes.use_project_dimension = false; attributes.use_project_dimension = false;
if(connect_type == CONNECT_TYPE.input && self.index >= 0) { if(connect_type == CONNECT_TYPE.input && self.index >= 0) {
var _val = animator.getValue(time); var _val = getValue(time);
node.inputs_data[self.index] = _val; // setInputData(self.index, _val); node.inputs_data[self.index] = _val; // setInputData(self.index, _val);
node.input_value_map[$ internalName] = _val; node.input_value_map[$ internalName] = _val;