CameraSettings.SetNearAndFarPlane(Single, Single) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Définit le plan proche et lointain de la caméra.
public:
void SetNearAndFarPlane(float nearPlane, float farPlane);
public void SetNearAndFarPlane (float nearPlane, float farPlane);
member this.SetNearAndFarPlane : single * single -> unit
Public Sub SetNearAndFarPlane (nearPlane As Single, farPlane As Single)
Paramètres
- nearPlane
- Single
Distance jusqu’au plan proche. Doit être supérieur à zéro.
- farPlane
- Single
La distance jusqu’au plan lointain. Doit être supérieur à zéro.
Remarques
Pour une qualité optimale, maintenez le ratio farPlane/nearPlane bas. Pour les cas d’usage de réalité augmentée, le plan lointain n’a pas besoin d’être très éloigné, 20 à 100 mètres doivent suffire.
Une InvalidParam erreur se produit si nearPlane est supérieur ou égal à farPlane.