Version: 2023.1
언어: 한국어

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"); } }

변수

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.
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.

상속된 멤버

변수

hideFlagsShould the object be hidden, saved with the Scene or modifiable by the user?
nameThe name of the object.

Public 함수

GetInstanceIDGets the instance ID of the object.
ToStringReturns the name of the object.

정적 함수

DestroyRemoves a GameObject, component or asset.
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
DontDestroyOnLoadDo not destroy the target Object when loading a new Scene.
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.
InstantiateClones the object original and returns the clone.

연산자

boolDoes the object exist?
operator !=Compares if two objects refer to a different object.
operator ==Compares two object references to see if they refer to the same object.