NormalMark
NormalMark
NNormal
Created by Alix Ollivier on 4/15/2025 in #🤝ask-a-question
I'm getting horrible echoes
It's expected behaviour and wasn't related to the echo as far as I could tell
129 replies
NNormal
Created by Alix Ollivier on 4/15/2025 in #🤝ask-a-question
I'm getting horrible echoes
It's managed by RealtimeAvatarVoice and will be different for local/remote
129 replies
NNormal
Created by Alix Ollivier on 4/15/2025 in #🤝ask-a-question
I'm getting horrible echoes
I've double checked the looping toggle too before
129 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
Glad you found a workaround. But yeah seems like a bug in Normcore, I'll log it internally
31 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
We only fire Realtime.didConnectToRoom after we set the models on all the scene views, so they should be ready for ownership changes by then
31 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
If you can put together a minimal repro project I'd be glad to take a look
31 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
Hmm this one works fine too:
using Normal.Realtime;

[RealtimeModel(true)]
public partial class TestAModel {
[RealtimeProperty(1, true)]
private int _a;

[RealtimeProperty(2, false)]
private int _b;
}

public class TestA : RealtimeComponent<TestAModel> {
public Realtime targetRealtime;

private void Start() {
targetRealtime.didConnectToRoom += x => {
realtimeView.RequestOwnershipOfSelfAndChildren();
};
}

protected override void OnRealtimeModelReplaced(TestAModel previousModel, TestAModel currentModel) {
base.OnRealtimeModelReplaced(previousModel, currentModel);

if (currentModel != null) {
currentModel.a = 10;
currentModel.b = 10;
}
}
}
using Normal.Realtime;

[RealtimeModel(true)]
public partial class TestAModel {
[RealtimeProperty(1, true)]
private int _a;

[RealtimeProperty(2, false)]
private int _b;
}

public class TestA : RealtimeComponent<TestAModel> {
public Realtime targetRealtime;

private void Start() {
targetRealtime.didConnectToRoom += x => {
realtimeView.RequestOwnershipOfSelfAndChildren();
};
}

protected override void OnRealtimeModelReplaced(TestAModel previousModel, TestAModel currentModel) {
base.OnRealtimeModelReplaced(previousModel, currentModel);

if (currentModel != null) {
currentModel.a = 10;
currentModel.b = 10;
}
}
}
31 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
Test A is:
[RealtimeModel(true)]
public partial class TestAModel {

}

public class TestA : RealtimeComponent<TestAModel> {

}
[RealtimeModel(true)]
public partial class TestAModel {

}

public class TestA : RealtimeComponent<TestAModel> {

}
31 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
No description
31 replies
NNormal
Created by MaxEsin on 5/6/2025 in #🤝ask-a-question
Microphone on the HTC VIVE Focus 3 doesn't work
will do 👍
18 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
but I wasn't able to get the error
31 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
No description
31 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
Is this on Normcore 2.15.4?
31 replies
NNormal
Created by RoyNexus on 5/7/2025 in #🤝ask-a-question
RealtimeView.RequestOwnershipOfSelfAndChildren() causes error: Collection was modified
Hey, trying to repro this bug on our side
31 replies
NNormal
Created by Harper on 1/8/2025 in #🤝ask-a-question
What's going on with offline mode?
We have a fix that should ship in a few weeks 👍 The Realtime instance will disconnect from the currently connected room if the user calls Connect to a different room.
56 replies
NNormal
Created by gubebra on 4/17/2025 in #🤝ask-a-question
First person to create the room fails to listen to the on change events correctly
I've confirmed the issue on our side. We have a fix in mind that we'll release in the next 3 weeks. You're right, it affects RealtimeDictionary elements (and maybe elements in other types of collections) specifically when the model is created before the room is created (such as OnRealtimeModelReplaced when isFreshModel = true).
25 replies
NNormal
Created by gubebra on 4/17/2025 in #🤝ask-a-question
First person to create the room fails to listen to the on change events correctly
Hey, thanks for the repro. I'll look into it 👍
25 replies
NNormal
Created by Robi 🐋 on 10/5/2024 in #🤝ask-a-question
Normcore Meta Avatars Setup Issues
No description
166 replies
NNormal
Created by look on 3/31/2025 in #🤝ask-a-question
Voice chat not working when initializing oculus?
Try using Core.Initialize() instead of Core.AsyncInitialize()
9 replies