diff --git a/core/IvmiNode.gd b/core/IvmiNode.gd
index 9a67aa06523ca8c09aa07fe86f47cde90a6b8624..f553a624ffd904735d78753c3e5bb2f1799c90c2 100644
--- a/core/IvmiNode.gd
+++ b/core/IvmiNode.gd
@@ -138,7 +138,7 @@ func _process(delta):
 			_properties["distance_to_camera"].set_values([(cam_pos-obj_pos).length()])
 	
 	#output all values listened to which have changed
-	if _send_data:
+	if _send_data and not Engine.is_editor_hint():
 		for k in _properties.keys():
 			if _properties[k]._changed :
 				if _properties[k]._listen :