Skip to main content

Scene Components

Every Unity scene you'd like to bring into VRChat requires a VRC_SceneDescriptor component. The VRChat Worlds SDK contains various other components to allow your users to interact with your world, pick up objects, see themselves in a mirror, and more.

Please consult Allowlisted World Components for a full list of components available in the VRChat SDK.

ComponentDescription
TextMesh ProUsed to display high-quality text.
VRC_AvatarPedestalUsed to display and / or switch to an avatar.
VRC_MirrorReflectionUsed to create a mirror in VRChat.
VRC_ObjectSyncSyncs the transform of a GameObject with all players in the instance.
VRC_PickupAllows objects to be picked up, held and used by players.
VRC_PortalMarkerCreates portals to other VRChat worlds.
VRC_SceneDescriptorDescribes your VRChat world. Required for every Unity scene you'd like to use as a VRChat world.
VRC_SpatialAudioSourceAdds 3D spatialization to a Unity AudioSource. Usually automatically added with AudioSource components in editor.
VRC_StationAllow users to sit down.
VRC_UIShapeAllow users to interact with Unity's UI system.
VRC Camera DollyAllow camera dolly animations to be applied to the VRChat user camera.
VRC Phys BoneAdds secondary physics based motion to objects in your world.
VRC Phys Bone ColliderDefines a collision shape that PhysBones can collide against.
VRC Phys Bone RootDefines the root transform for a collection of PhysBones.
VRC Contact SenderDetected by Contact Receivers to trigger world behavior when collisions start and end.
VRC Contact ReceiverDetects Contact Senders to trigger world behavior when collisions start and end.
VRC ConstraintsA like-for-like replacement of Unity constraints to allow transforms to move relative to each other in various ways.

World PhysBone and Contact Limits

For performance reasons, there is an enforced limit of 1024 active PhysBones and PhysBone Colliders in the currently loaded world, as well as a separate limit of 1024 active Contacts. More specifically:

  • If the total number of active PhysBones and PhysBone Colliders in your world reaches 1024, further PhysBones and PhysBone Colliders won't work until some of the existing components are either disabled or destroyed.
  • If the total number of active Contact Senders and Contact Receivers in your world reaches 1024, further Contacts won't work until some of the existing components are either disabled or destroyed.

A warning will be displayed by the SDK if the total count of these components exceeds either limit. However, you can ignore these warnings provided you make sure no more than 1024 of each kind of component are active in your world at the same time.