IAssetComposite Interface
Namespace: Stride.Core.AssetsAssembly: Stride.Core.Assets.dll
An interface that defines the composition declared by an asset inheriting from another asset.
public interface IAssetComposite
              | Name | Description | |
|---|---|---|
| Methods | ||
| CollectParts() | Collects the part assets.  | 
                          |
| ContainsPart(Guid) | Checks if this AssetPart container contains the part with the specified id.  | 
                          |
Methods
CollectParts()
Collects the part assets.
IEnumerable<AssetPart> CollectParts()
              Returns
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable<AssetPart> | 
ContainsPart(Guid)
Checks if this AssetPart container contains the part with the specified id.
bool ContainsPart(Guid id)
              Parameters
| Type | Name | Description | 
|---|---|---|
| System.Guid | id | Unique identifier of the asset part  | 
                  
Returns
| Type | Description | 
|---|---|
| System.Boolean | 
  |