Mirrors/fr: Difference between revisions

From VRChat Wiki
French Fox (talk | contribs)
Created page with "Il peut être activé et modifié via la page du menu d'action ou du menu principal. Aucune option de configuration n'est disponible pour le miroir de calibration."
French Fox (talk | contribs)
Created page with "=== Haute qualité ==="
Line 44: Line 44:
</div>
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<span id="High_quality"></span>
=== High quality ===
=== Haute qualité ===
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<div lang="en" dir="ltr" class="mw-content-ltr">

Revision as of 17:01, 1 December 2025

V · EC'est une page officielle d'informations VRChat !
Elle est examinée et approuvée par l'équipe VRCWiki. Apprenez comment contribuer à cette page en consultant le Guide du contributeur.
V · ECette page est un brouillon.
Vous pouvez aider le Wiki de VRChat en l'améliorant.
[Raison: Resources heading is empty. Proofread according to Manual of Style.]
Un groupe de personnes socialisant devant un miroir.

Les miroirs sont des surfaces réflectives qui permettent aux utilisateurs de voir une image réfléchie de leur avatar aux côtés d'autres utilisateurs ou du monde où ils se trouvent, dépendant des paramètres du monde. De nombreux mondes possèdent des miroirs ayant pour but de permettre aux utilisateurs de s'y asseoir tout en socialisant. Cette activité est plus communément appelée « Mirror Dwelling ». Les utilisateurs sont aussi en capacité d'utiliser un miroir personnel qui leur est uniquement visible.

préfab de monde

Le SDK VRchat contient un préfab de miroir prêt à utiliser qui peut être glissé dans la scène. Ce préfab peut être trouvé sur le chemin suivant :
Packages\com.vrchat.worlds\Samples\UdonExampleScene\Prefabs\VRCMirror.prefab

Types de miroirs

Miroir personnel

Un miroir personnel est un type de miroir pouvant être utilisé, déplacé et visible uniquement par son utilisateur.

Il peut être activé et modifié via la page du menu d'action ou du menu principal.

Miroir facial

Un miroir facial est un type de miroir qui affiche le visage de l'avatar de l'utilisateur sur son ATH. Les miroirs facials sont conçus pour aider les utilisateurs à rester conscients des expressions faciales de leur avatar, plus particulièrement si ceux-ci sont contrôlés par des gestes. Contrairement à un miroir traditionnel, le miroir facial ne représente pas la notion de profondeur.

Il peut être activé et modifié via la page du menu d'action ou du menu principal.

Miroir de calibration

A calibration mirror is a type of mirror that activates automatically when the user presses the "Calibrate FBT" button. It is visible only to the user who is calibrating and disappears once they are done. The calibration mirror displays only the user's avatar, controllers, and FBT tracker model, which can be set in the Main Menu's Settings. If "Display Calibration Visuals" is enabled under Tracking and IK, the calibration mirror will also reflect these, showing which tracking points the trackers will track when calibration is done.

Il peut être activé et modifié via la page du menu d'action ou du menu principal. Aucune option de configuration n'est disponible pour le miroir de calibration.

Common setups

The mirror prefab allows for selection of which layers are to be shown in the reflection. Therefore it is common that worlds have set up multiple different mirrors to toggle between. Which is why it usually breaks down to 3 options: high quality, low quality and transparent mirror. Some worlds offer even more specialized setups beyond these.

Haute qualité

A high quality mirror acts as a mirror would in real life, reflecting the world and avatars around it from the perspective of the mirror.

Low quality

A low quality mirror usually mirrors the avatars around it at a lower resolution and replaces the reflection of the world with the skybox.

Transparent

A transparent mirror usually reflects the avatars around it while acting like a window, showing what appears behind the mirror, and also having a faint reflection of world from the mirror's perspective. It requires a special set up, which is also available through transparent mirror prefabs from the community.

Performance issues

Every object reflected in a mirror has to be rendered again, separately from what the player sees in the playable world. A mirror reflecting the whole world will double the performance cost of rendering the world. Occlusion culling does not work in mirror reflections, so a mirror facing a wall will still try to render everything behind the wall too.

Creators can reduce the performance cost for mirrors in many ways, such as:

  • Disabling all mirrors by default. Only enable a mirror when the player pushes a button, or physically approaches them.
  • Disabling mirrors when a player leaves the area. This will remove the rendering cost of a mirror when a player isn't using it. Players will often not do this themselves, so use a script to do it for them.
  • Considering the placement of mirrors. A mirror facing away from the center of the world will have to render less than one facing inward.
  • Changing the Layers

a mirror reflects. A mirror only renders objects on the defined layers. For example, if you have a large outdoor world with a house in the middle, you could set the outdoor environment objects to the environment layer, and then disable the environment layer on the mirrors inside the house. This will stop the mirrors from trying to render the environment that they can't see. When interacting with a Mirror in a world, users will be able to enable or toggle different options to save on performance, such as:

  • Using only one mirror at a time.
  • Choosing a lower quality option for a mirror, if available.
  • Alternatively, substituting a world's mirror for your Personal Mirror.
  • Adjust your mirror resolution under Graphics Settings.

Resources

[https://creators.vrchat.com/worlds/components/vrc_mirrorreflection/

VRChat Creator Documentation - VRC Mirror Reflection

]