Table of Contents

Class AssetCompiledArgs

Namespace
Stride.Core.Assets.Compiler
Assembly
Stride.Core.Assets.dll

The class represents the argument of the AssetCompiled event raised by the ItemListCompiler class.

public class AssetCompiledArgs : EventArgs
Inheritance
AssetCompiledArgs
Inherited Members

Constructors

AssetCompiledArgs(AssetItem, AssetCompilerResult)

Constructs an AssetCompiledArgs instance.

public AssetCompiledArgs(AssetItem asset, AssetCompilerResult result)

Parameters

asset AssetItem

The asset that has been compiled. Cannot be null.

result AssetCompilerResult

The result of the asset compilation. Cannot be null.

Properties

Asset

The asset item that has just been compiled.

public AssetItem Asset { get; set; }

Property Value

AssetItem

Result

The result of the asset compilation.

public AssetCompilerResult Result { get; set; }

Property Value

AssetCompilerResult