# Bake(Scene)

> Starts a synchronous lighting bake job for the target Scene.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor.Experimental](/engine/6000.6/script-reference/unityeditor/experimental.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public static bool Bake(Scene targetScene)
```

### Parameters

**** (\[Scene]\(/engine/6000.6/script-reference/unityengine/scenemanagement/scene)): The Scene to generate lighting data for.

### Returns

| Type                                                          | Description                                                                                                                                      |
| ------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | Returns true if Unity successfully completes the lighting bake job. Returns false if Unity does not successfully complete the lighting bake job. |

### Remarks

Unity generates lighting data for the target Scene only, but Lights, Renderers, Terrains and emissive Materials from all open Scenes contribute to the lighting. Note that Renderers and Terrains contribute to the lighting only if their [StaticEditorFlags.ContributeGI](/engine/6000.6/script-reference/unityeditor/staticeditorflags/contributegi.md) flag is enabled.

Unity calls bakeStarted when it starts the bake, and bakeCompleted when it completes the bake. This function returns when Unity completes the bake. If the bake was not successful, Unity prints a warning to the console.

Note that Unity only performs the bake if [Lightmapping.giWorkflowMode](/engine/6000.6/script-reference/unityeditor/lightmapping/giworkflowmode-1.md) is set to [Lightmapping.GIWorkflowMode.OnDemand](/engine/6000.6/script-reference/unityeditor/lightmapping/giworkflowmode/ondemand.md). If this is not the case, this function immediately returns false.

For asynchronous bakes see [Lightmapping.BakeAsync](/engine/6000.6/script-reference/unityeditor/experimental/lightmapping/bakeasync.md).

Additional Resources: [Scene](/engine/6000.6/script-reference/unityeditor/searchservice/scene.md).
