Ryan GreenR
Normal2y ago
6 replies
Ryan Green

are all properties on a model updated at the same time?

if I update multiple properties on a model at the same time on the same frame, will they sync to clients at the same time?

for example:
    [RealtimeModel]
    public partial class MonaBodyNetworkIdentifierModel
    {
        [RealtimeProperty(1, true, true)]
        private string _localId;

        [RealtimeProperty(2, true, true)]
        private string _prefabId;

        [RealtimeProperty(3, true, true)]
        private bool _locallyOwnedMonaBody;
    }


if I update local, prefab, and locallyOwnedMonaBody at the same time, will all of these properties arrive on a client at the same time?
Was this page helpful?