You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.IsNotNull(properties,"Serialized properties should be a dictionary.");
45
+
46
+
Assert.IsTrue(properties.ContainsKey(nameof(FusionUnsafeTypeComponent.safeValue)),"Safe fields should still serialize.");
47
+
Assert.IsFalse(properties.ContainsKey(nameof(FusionUnsafeTypeComponent.directBuffer)),"Direct Fusion buffer fields should be skipped.");
48
+
Assert.IsFalse(properties.ContainsKey(nameof(FusionUnsafeTypeComponent.bufferList)),"Collections containing Fusion buffer types should be skipped.");
49
+
Assert.IsFalse(properties.ContainsKey(nameof(FusionUnsafeTypeComponent.nestedChangedLookup)),"Nested generic containers containing Fusion Changed<T> should be skipped.");
50
+
Assert.IsFalse(properties.ContainsKey(nameof(FusionUnsafeTypeComponent.ChangedListProperty)),"Properties returning collections of Fusion Changed<T> should be skipped.");
0 commit comments