Version: 2023.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 Enlighten 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"); } }

Additional resources: Lighting Settings Asset.

变量

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).
bakedGIWhether to enable the Baked Global Illumination system for this Scene.
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).
environmentImportanceSamplingDetermines whether Progressive Lightmappers use importance sampling when they sample environment lighting while baking.
environmentSampleCountSpecifies the number of samples the Progressive Lightmapper uses when sampling indirect lighting from the skybox. (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 you use the Gaussian filter. (Editor only).
filteringGaussianRadiusAOSpecifies the radius the Progressive Lightmapper uses to filter the direct lighting component of the lightmap when you use the Gaussian filter. (Editor only).
filteringGaussianRadiusDirectSpecifies the radius the Progressive Lightmapper uses to filter the indirect lighting component of the lightmap when you use the Gaussian filter. (Editor only).
filteringGaussianRadiusIndirectSpecifies the method that the Progressive Lightmapper uses 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 whether the Editor calculates the final global illumination light bounce at the same resolution as the baked lightmap.
indirectResolutionDefines the number of texels that Enlighten Realtime Global Illumination 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).
lightmapCompressionThe level of compression the Editor uses for lightmaps.
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 Enlighten Realtime Global Illumination system for this Scene.
respectSceneVisibilityWhenBakingGIWhen Unity is precomputing or baking Global Illumination, respect the Scene Visibility setting of a [[GameObject] with a MeshRenderer or Terrain component.

继承的成员

变量

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

公共函数

GetInstanceIDGets the instance ID of the object.
ToString返回对象的名称。

静态函数

Destroy移除 GameObject、组件或资源。
DestroyImmediate立即销毁对象 /obj/。强烈建议您改用 Destroy。
DontDestroyOnLoad在加载新的 Scene 时,请勿销毁 Object。
FindAnyObjectByTypeRetrieves any active loaded object of Type type.
FindFirstObjectByTypeRetrieves the first active loaded object of Type type.
FindObjectsByTypeRetrieves a list of all loaded objects of Type type.
Instantiate克隆 original 对象并返回克隆对象。

运算符

bool该对象是否存在?
operator !=比较两个对象是否引用不同的对象。
operator ==比较两个对象引用,判断它们是否引用同一个对象。