Obuka
Modul
Render a 3D model with Azure Remote Rendering - Training
Use Azure Remote Rendering to render a 3D model in a Unity project. You can deploy the model to HoloLens 2 or use the power of mixed reality with the MRTK.
Ovaj preglednik više nije podržan.
Prijeđite na Microsoft Edge, gdje vas čekaju najnovije značajke, sigurnosna ažuriranja i tehnička podrška.
By default the remotely rendered objects are lit using a sky light. For most applications, a static sky light is already sufficient, but you can add further dynamic light sources to the scene.
Važno
Only PBR materials are affected by light sources. Color materials and point clouds always appear fully bright.
Napomena
Casting shadows is currently not supported. Azure Remote Rendering is optimized to render huge amounts of geometry, utilizing multiple GPUs if necessary. Traditional approaches for shadow casting do not work well in such scenarios.
All light types derive from the abstract base class LightComponent
and share these properties:
Color: The color of the light in Gamma space. Alpha is ignored.
Intensity: The brightness of the light. For point and spot lights, intensity also defines how far the light shines.
In Azure Remote Rendering the PointLightComponent
can not only emit light from a single point, but also from a small sphere or a small tube, to simulate softer light sources.
Radius: The default radius is zero, in which case the light acts as a point light. If the radius is larger than zero, it acts as spherical light source, which changes the appearance of specular highlights.
Length: If both Length
and Radius
are non-zero, the light acts as a tube light. This combination can be used to simulate neon tubes.
AttenuationCutoff: If left to (0,0) the attenuation of the light only depends on its Intensity
. However, you can provide custom min/max distances over which the light's intensity is scaled linearly down to 0. This feature can be used to enforce a smaller range of influence of a specific light.
ProjectedCubemap: If set to a valid cubemap, the texture is projected onto the light's surrounding geometry. The cubemap's color is modulated with the light's color.
The SpotLightComponent
is similar to the PointLightComponent
but the light is constrained to the shape of a cone. The orientation of the cone is defined by the owner entity's negative z-axis.
Radius: Same as for the PointLightComponent
.
SpotAngleDeg: This interval defines the inner and outer angle of the cone, measured in degree. Everything within the inner angle is illuminated with full brightness. A falloff is applied towards the outer angle that generates a penumbra-like effect.
FalloffExponent: Defines how sharply the falloff transitions between the inner and the outer cone angle. A higher value results in a sharper transition. The default of 1.0 results in a linear transition.
AttenuationCutoff: Same as for the PointLightComponent
.
Projected2dTexture: If set to a valid 2D texture, the image is projected onto geometry that the light shines at. The texture's color is modulated with the light's color.
The DirectionalLightComponent
simulates a light source that is infinitely far away. The light shines into the direction of the negative z-axis of the owner entity. The entity's position is ignored.
There are no additional properties.
Light sources have a significant impact on rendering performance. Use them carefully and only if required by the application. Any static global lighting condition, including a static directional component, can be achieved with a custom sky texture, with no additional rendering cost.
Obuka
Modul
Render a 3D model with Azure Remote Rendering - Training
Use Azure Remote Rendering to render a 3D model in a Unity project. You can deploy the model to HoloLens 2 or use the power of mixed reality with the MRTK.