Version: Unity 6.1 Alpha (6000.1)
LanguageEnglish
  • C#

InputExtraction.PopulateWorld

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static bool PopulateWorld(LightTransport.InputExtraction.BakeInput bakeInput, LightTransport.BakeProgressState progress, LightTransport.IDeviceContext context, LightTransport.IWorld world);

Parameters

bakeInput The bake input to use.
progress Progress tracker.
context Device context.
world The world to populate with the contents of the bake input.

Returns

bool True if the world was populated successfully.

Description

Populate the given world from a bake input.

This method generates the world space data structures used by integrators. For example, acceleration structures, lookup tables, and other data structures that can be shared between integrators. Related content: IWorld.

How to populate a world from a bake input.

// Extract bake input. bool result = UnityEngine.LightTransport.InputExtraction.ExtractFromScene(out var input); Assert.IsTrue(result);

// Create context and world. var context = new RadeonRaysContext(); Assert.NotNull(context);

var contextInitialized = context.Initialize(); Assert.AreEqual(true, contextInitialized); var world = new RadeonRaysWorld();

// Populate the integration world. using var progress = new BakeProgressState(); var worldResult = UnityEngine.LightTransport.InputExtraction.PopulateWorld(input, progress, context, world); Assert.IsTrue(worldResult);

Context.Dispose();

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961