Version: 2020.2

LightingSettings

class in UnityEngine

/

继承自:Object

切换到手册

描述

An object containing settings for precomputing lighting data, that Unity can serialize as a Lighting Settings Asset.

When the Unity Editor precomputes lighting data for a Scene that uses the Baked Global Illumination system or the Realtime Global Illumination system, it uses settings from a LightingSettings object. The same LightingSettings object can be assigned to more than one Scene, which makes it possible to share settings across multiple Scenes.

The following example shows how to create a LightingSettings object and assign it to the active Scene using the Lightmapping.lightingSettings API:

using UnityEngine;
using UnityEditor;

public class CreateLightingSettingsExample { [MenuItem("Example/Create Lighting Settings")] static void CreateExampleLightingSettings() { // Create an instance of LightingSettings LightingSettings lightingSettings = new LightingSettings();

// Configure the LightingSettings object lightingSettings.albedoBoost = 8.0f;

// Assign the LightingSettings object to the active Scene Lightmapping.lightingSettings = lightingSettings; } }

The following example shows how to create a LightingSettings object, and save it to disk as a Lighting Settings Asset using the AssetDatabase.CreateAsset API.

using UnityEngine;
using UnityEditor;

public class CreateLightingSettingsExample { [MenuItem("Example/Create Lighting Settings")] static void SaveExampleLightingSettingsToDisk() { // Create an instance of LightingSettings LightingSettings lightingSettings = new LightingSettings();

// Configure the LightingSettings object lightingSettings.albedoBoost = 8.0f;

// Save it to your Project, using the .lighting extension AssetDatabase.CreateAsset(lightingSettings, "Assets/ExampleLightingSettings.lighting"); } }

变量

albedoBoostThe intensity of surface albedo throughout the Scene when considered in lighting calculations. This value influences the energy of light at each bounce. (Editor only).
aoWhether to apply ambient occlusion to lightmaps. (Editor only).
aoExponentDirectDetermines the degree to which direct lighting is considered when calculating ambient occlusion in lightmaps. (Editor only).
aoExponentIndirectSets the contrast of ambient occlusion that Unity applies to indirect lighting in lightmaps. (Editor only).
aoMaxDistanceThe distance that a ray travels before Unity considers it to be unoccluded when calculating ambient occlusion in lightmaps. (Editor only).
autoGenerateWhether the Unity Editor automatically precomputes lighting data when the Scene data changes. (Editor only).
bakedGIWhether to enable the Baked Global Illumination system for this Scene.
compressLightmapsWhether to compress the lightmap textures that the Progressive Lightmapper generates. (Editor only)
denoiserTypeAODetermines the type of denoising that the Progressive Lightmapper applies to ambient occlusion in lightmaps. (Editor only).
denoiserTypeDirectDetermines the denoiser that the Progressive Lightmapper applies to direct lighting. (Editor only).
denoiserTypeIndirectDetermines the denoiser that the Progressive Lightmapper applies to indirect lighting. (Editor only).
directionalityModeDetermines whether the lightmapper should generate directional or non-directional lightmaps. (Editor only).
directSampleCountSpecifies the number of samples the Progressive Lightmapper uses for direct lighting calculations. (Editor only).
environmentSampleCountSpecifies the number of samples the Progressive Lightmapper uses when sampling indirect lighting from the skybox. (Editor only).
exportTrainingDataWhether the Progressive Lightmapper exports machine learning training data to the Project folder when it performs the bake. ( Editor only).
extractAOWhether the Progressive Lightmapper extracts Ambient Occlusion to a separate lightmap. (Editor only).
filteringAtrousPositionSigmaAOSpecifies the threshold the Progressive Lightmapper uses to filter direct light stored in the lightmap when using the A-Trous filter. (Editor only).
filteringAtrousPositionSigmaDirectSpecifies the threshold the Progressive Lightmapper uses to filter the indirect lighting component of the lightmap when using the A-Trous filter. (Editor only).
filteringAtrousPositionSigmaIndirectSpecifies the radius the Progressive Lightmapper uses to filter the ambient occlusion component in the lightmap when using Gaussian filter. (Editor only).
filteringGaussRadiusAOSpecifies the radius the Progressive Lightmapper uses to filter the direct lighting component of the lightmap when using Gaussian filter. (Editor only).
filteringGaussRadiusDirectSpecifies the radius the Progressive Lightmapper used to filter the indirect lighting component of the lightmap when using Gaussian filter. (Editor only).
filteringGaussRadiusIndirectSpecifies the method used by the Progressive Lightmapper to reduce noise in lightmaps. (Editor only).
filteringModeSpecifies the filter type that the Progressive Lightmapper uses for ambient occlusion. (Editor only).
filterTypeAOSpecifies the filter kernel that the Progressive Lightmapper uses for ambient occlusion. (Editor only).
filterTypeDirectSpecifies the filter kernel that the Progressive Lightmapper uses for the direct lighting. (Editor only).
filterTypeIndirectSpecifies the filter kernel that the Progressive Lightmapper uses for indirect lighting. (Editor only).
finalGatherSpecifies whether the final light bounce of the global illumination calculation is calculated at the same resolution as the baked lightmap. (Editor only).
finalGatherFilteringControls whether a denoising filter is applied to the final gather output.
finalGatherRayCountControls the number of rays emitted for every final gather point. A final gather point is a lightmap texel in the final, composited lightmap. (Editor only).
indirectResolutionDefines the number of texels that Enlighten uses per world unit when calculating indirect lighting. (Editor only).
indirectSampleCountSpecifies the number of samples the Progressive Lightmapper uses for indirect lighting calculations. (Editor only).
indirectScaleMultiplies the intensity of of indirect lighting in lightmaps. (Editor only).
lightmapMaxSizeThe maximum size in pixels of an individual lightmap texture. (Editor only).
lightmapPaddingSets the distance (in texels) between separate UV tiles in lightmaps. (Editor only).
lightmapperDetermines which backend to use for baking lightmaps in the Baked Global Illumination system. (Editor only).
lightmapResolutionDefines the number of texels to use per world unit when generating lightmaps.
lightProbeSampleCountMultiplierSpecifies the number of samples to use for Light Probes relative to the number of samples for lightmap texels. (Editor only).
maxBouncesStores the maximum number of bounces the Progressive Lightmapper computes for indirect lighting. (Editor only)
minBouncesStores the minimum number of bounces the Progressive Lightmapper computes for indirect lighting. (Editor only)
mixedBakeModeSets the MixedLightingMode that Unity uses for all Mixed Lights in the Scene. (Editor only).
prioritizeViewWhether the Progressive Lightmapper prioritizes baking visible texels within the frustum of the Scene view. (Editor only).
realtimeEnvironmentLightingDetermines the lightmap that Unity stores environment lighting in.
realtimeGIWhether to enable the Realtime Global Illumination system for this Scene.
trainingDataDestinationDetermines the name of the destination folder for the exported textures. (Editor only).

继承的成员

变量

hideFlags该对象应该隐藏、随场景一起保存还是由用户修改?
name对象的名称。

公共函数

GetInstanceID返回对象的实例 ID。
ToString返回对象的名称。

静态函数

Destroy移除 GameObject、组件或资源。
DestroyImmediate立即销毁对象 /obj/。强烈建议您改用 Destroy。
DontDestroyOnLoad在加载新的 Scene 时,请勿销毁 Object。
FindObjectOfType返回第一个类型为 type 的已加载的激活对象。
FindObjectsOfTypeGets a list of all loaded objects of Type type.
Instantiate克隆 original 对象并返回克隆对象。

运算符

bool该对象是否存在?
operator !=比较两个对象是否引用不同的对象。
operator ==比较两个对象引用,判断它们是否引用同一个对象。
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961