fixed: property update

This commit is contained in:
2023-03-23 05:28:47 +04:00
parent 828da0d3da
commit 1a5f72a815
+7 -3
View File
@@ -70,10 +70,14 @@ namespace Ragon.Client
{
InvokeChanged();
if (_dirty) return;
_dirty = true;
if (_dirty)
return;
_entity?.TrackChangedProperty(this);
if (_entity != null)
{
_dirty = true;
_entity.TrackChangedProperty(this);
}
}
internal void Flush()