Unity_Addressable_組設(shè)置
Group settings determine how Unity treats the assets in a group in content builds. Group settings control properties such as the location where AssetBundles are built or bundle compression settings.
譯:組設(shè)置確定Unity在內(nèi)容構(gòu)建中處理組中資產(chǎn)的方式。組設(shè)置控制屬性,例如構(gòu)建AssetBundles的位置或捆綁壓縮設(shè)置。
A group's settings are declared in Schema objects attached to the group. When you create a group with the?Packed Assets?template, the?Content Packing & Loading?and?Content Update Restriction?schemas define the settings for the group. The default?Build scripts?expect these settings.
譯:組的設(shè)置在附加到組的模式對象中聲明。當(dāng)您使用Packed Assets模板創(chuàng)建組時,Content Packing&Loading和Content Update Restriction模式定義組的設(shè)置。默認(rèn)構(gòu)建腳本期望這些設(shè)置。

The Inspector window for the Default Local Group
譯:默認(rèn)本地組的檢查器窗口
NOTE
If you create a group with the?Blank?template, then no schemas are attached to the group. Assets in such a group cannot be processed by the default build scripts.
譯:如果使用空模板創(chuàng)建組,則未附加模式對象到該組。此類組中的資產(chǎn)無法由默認(rèn)構(gòu)建腳本處理。
Schemas
A group schema is a ScriptableObject that defines a collection of settings for an Addressables group. You can assign any number of schemas to a group. The Addressables system defines a number of schemas for its own purposes. You can also create custom schemas to support your own build scripts and utilities.
譯:組模式是一種ScriptableObject,用于為Addressables組定義一系列設(shè)置。您可以向組分配任意數(shù)量的模式。Addressables系統(tǒng)為其自身的目的定義了許多模式。您還可以創(chuàng)建自定義模式以支持自己的構(gòu)建腳本和實(shí)用程序。
The built-in schemas include:內(nèi)置模式包括:
Content Packing & Loading: this is the main Addressables schema used by the default build script and defines the settings for building and loading Addressable assets.譯:Content Packing&Loading:這是默認(rèn)構(gòu)建腳本使用的主Addressables模式,并定義了構(gòu)建和加載Addressable資產(chǎn)的設(shè)置。
Content Update Restrictions: defines settings for making differential updates of a previous build. See?Builds?for more information about update builds.譯:Content Update Restrictions:定義了先前構(gòu)建的差分更新的設(shè)置。有關(guān)更新構(gòu)建的更多信息,請參見“構(gòu)建”。
Resources and Built In Scenes: a special-purpose schema defining settings for which types of built-in assets to display in the?Built In Data?group.譯:資源和內(nèi)置場景:特殊用途的模式,定義了在內(nèi)置數(shù)據(jù)組中顯示哪些類型的內(nèi)置資產(chǎn)的設(shè)置。
Defining custom schemas
To create your own schema, extend the?AddressableAssetGroupSchema?class (which is a kind of ScriptableObject).
譯:要創(chuàng)建自己的模式,請擴(kuò)展AddressableAssetGroupSchema類(這是一種ScriptableObject類型)。
Once you have defined your custom schema object, you can add it to existing groups and group templates using the Add Schema buttons found on the Inspector windows of those entities.
譯:一旦定義了自定義模式對象,您可以使用在這些實(shí)體的檢查器窗口上找到的Add Schema按鈕將其添加到現(xiàn)有組和組模板中。
You might also want to create a custom Editor script to help users interact with your custom settings. See?Custom Inspector scripts.
譯:您可能還希望創(chuàng)建自定義編輯器腳本,以幫助用戶與自定義設(shè)置交互。請參見自定義檢查器腳本。
In a build script, you can access the schema settings for a group using its?AddressableAssetGroup?object.
譯:在構(gòu)建腳本中,您可以使用其AddressableAssetGroup對象訪問組的模式設(shè)置。