Niv
Niv
NNormal
Created by Niv on 2/25/2025 in #🤝ask-a-question
preventOwnershipTakeover is not synchronized between clients
initial tests look great, much appreciated! 😄
13 replies
NNormal
Created by Niv on 2/25/2025 in #🤝ask-a-question
preventOwnershipTakeover is not synchronized between clients
nice - will do!
13 replies
NNormal
Created by Niv on 3/5/2025 in #🤝ask-a-question
What happens when state changes very close to (or same frame) when the object is destroyed?
Thanks Max that clears it up. While you mentioned reliable vs. unreliable - are unreliable generally quicker to arrive (assuming no packet loss)? or do they use a similar pipe?
14 replies
NNormal
Created by Niv on 3/3/2025 in #🤝ask-a-question
What is the overhead of RealtimeView components?
Thanks mark - that's in line with what I assumed, but good to know.
7 replies
NNormal
Created by Niv on 2/26/2025 in #🤝ask-a-question
Not getting ownership changed event when remote authority prevents it
yeah that bug is what's keeping me on 2.11.1 - the other bugs have fairly simple workaround but that other bug (not getting correct state of 'preventOwnershipTakeover' in remote clients) is impossible to work around. But it's all good, we're working and happy so take your time figuring this one out.
13 replies
NNormal
Created by Niv on 2/26/2025 in #🤝ask-a-question
Not getting ownership changed event when remote authority prevents it
😂 Alright ... guess I'll hold for the fixed 2.14, do you an approximate time on the next patch? Thanks
13 replies
NNormal
Created by Niv on 2/25/2025 in #🤝ask-a-question
preventOwnershipTakeover is not synchronized between clients
thanks, I'll continue developing on 2.11.1 in the meantime. I'll help if there's a tested "stable" release shown somewhere so we can avoid wasting time looking into such issues
13 replies
NNormal
Created by Niv on 2/25/2025 in #🤝ask-a-question
preventOwnershipTakeover is not synchronized between clients
OK - one update. I went back a few versions - and it started behaving as expected (at least as I expect it to) in version 2.11.1 All the versions after it seem to show the same problem
13 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
only on remote
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
Oh one more thing that might be relevant, we have an unusual structure: - We have rootRealtimeView which is unowned (and has no components) - We have a childView with 2 compoenents - Another childView with 2 components and it has another child view with 5 components. The reason for this structure is that we can have split ownership for the two children. (although the bug manifests even when the same client owns both children)
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
Our project is huge and a bit of a pain to get up and running, I'd rather not go through that just for this bug
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
so perhaps the bug has to do with how the datastore handles it in a certain context, I don't know.
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
Also, that model goes along with a bunch of other models in the same RealtimeView heirarchy
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
well, a couple things we're doing differently (not sure if that's going to trigger it but worth a shot): 1. When our stun changes it usually happens every frame for a period of ~2 seconds. So try changing those properties every frame. 2. Even though we specify in the model we want 'didChange' events for every property - we only actually subscribe to the uuidDidChange event (and none of the others).
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
so a repro would probably be change some of the properties in the model, and to verify that only those properties get the 'didChange' events triggered
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
When we change other properties (like stunDamage and curStunDuration) it seems like uuid is getting the 'didChange' event as well but its value is the same
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
public partial class GameEntityModel
{
[RealtimeProperty(1, true, true)]
private int _health;

[RealtimeProperty(2, true, true)]
private float _stunDamage;

[RealtimeProperty(3, true, true)]
private float _curStunDuration;

[RealtimeProperty(4, true, true)]
private bool _isTurbo;

[RealtimeProperty(5, true, true)]
private bool _isOverheated;

[RealtimeProperty(6, true, true)]
private int _syncTeam;

[RealtimeProperty(7, true, true)]
private int _uuid;

}
public partial class GameEntityModel
{
[RealtimeProperty(1, true, true)]
private int _health;

[RealtimeProperty(2, true, true)]
private float _stunDamage;

[RealtimeProperty(3, true, true)]
private float _curStunDuration;

[RealtimeProperty(4, true, true)]
private bool _isTurbo;

[RealtimeProperty(5, true, true)]
private bool _isOverheated;

[RealtimeProperty(6, true, true)]
private int _syncTeam;

[RealtimeProperty(7, true, true)]
private int _uuid;

}
`
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
well this is the model in question:
43 replies
NNormal
Created by Niv on 2/24/2025 in #🤝ask-a-question
Getting property 'didChange' callbacks but value is identical to previous value.
are we better off being on that?
43 replies