Version: 2020.2

Texture.allowThreadedTextureCreation

切换到手册
public static bool allowThreadedTextureCreation ;

描述

Allow Unity internals to perform texture creation on any thread (rather than the dedicated render thread).

When set to true, Unity internals will try to create textures on a separate worker thread, rather than the dedicated render thread. This results in less hitches during asynchronous loading as it removes some work from the render thread.

When this is set to false, texture creation occurs on the render thread. Disabling threaded texture creation can be slightly faster in some cases as it avoids some synchronsation between threads, but may result in hitches with larger textures. This could be set to false during a non interactive synchronous loading phase to minimise the loading time, then it should be disabled during main gameplay to minimise hitches for any streamed content.

如果平台支持在单独的线程上创建纹理,则该设置默认为 true。 如果平台不支持在单独的线程上创建纹理,Texture.allowThreadedTextureCreation 始终返回 false,即使在设置为 true 之后也如此。

Note: The C# API's for texture creation (E.g. new Texture2D) must always be called on the main thread. This setting does not alter that requirement.

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