The Publishing
property provides access to the asset publisher configuration settings. This property is part of the Editor.Asset
class and is used to manage the publishing settings of an asset within the editor environment.
The Publishing
property provides access to the asset publisher configuration settings. This property is part of the Editor.Asset
class and is used to manage the publishing settings of an asset within the editor environment.
To access the publishing settings of an asset, you can use the Publishing
property. This property returns an instance of Editor.Asset/PublishSettings
, which contains various configuration options related to the publishing process of the asset.
// Example of accessing the Publishing property Editor.Asset asset = GetAsset(); // Assume GetAsset() returns an instance of Editor.Asset Editor.Asset.PublishSettings publishSettings = asset.Publishing; // Use publishSettings to configure publishing options // For example, setting a specific option publishSettings.SomeOption = true; // Replace SomeOption with an actual option available in PublishSettings