RealtimeAvatarManager component in NormalVR. RealtimeAvatarManager component under “Local Avatar Prefab”.RealtimeAvatarManager is responsible for instantiating an avatar prefab to represent the local player as well as keeping track of avatars that were instantiated for other players in the same room. If the component is enabled and realtime is connected to a room, an avatar prefab represented by the localAvatarPrefab property will be instantiated to represent the local client. This prefab needs to include a RealtimeAvatar component on the root in order to function correctly.InstantiateRealtimePrefabGameObject prefab = ... // Get your prefab
GameObject instance = InstantiateRealtimePrefab(prefab);