agv 개발

This commit is contained in:
logonkhi
2025-06-20 17:37:20 +09:00
parent 45c420e54e
commit f79372b4de
31 changed files with 1374 additions and 373 deletions

View File

@@ -6,6 +6,7 @@ using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Linq;
using UnityEngine;
using UVC.Extention;
using UVC.Log;
@@ -470,7 +471,7 @@ namespace UVC.Data
changedProperies.Clear();
foreach (var keyValue in (DataObject)other)
{
if (!this.ContainsKey(keyValue.Key) || !this[keyValue.Key].Equals(keyValue.Value))
if (!this.ContainsKey(keyValue.Key) || this[keyValue.Key] != keyValue.Value)
{
this[keyValue.Key] = keyValue.Value;
changedProperies.Add(keyValue.Key);