Preparing search index...

    A native asset that provides a cropped region of the input texture, calculated based on face position. Import with Editor.Model.AssetManager#createNativeAsset. Learn more in LensScripting.FaceCropTextureProvider

        // FaceCropTexture is a native asset that crops the camera feed around a detected face.
    // It exposes properties like faceIndex, faceCenterMouthWeight, and scale.

    const model = this.pluginSystem.findInterface(Editor.Model.IModel) as Editor.Model.IModel;
    const assetManager = model.project.assetManager;

    const sourcePath = new Editor.Model.SourcePath(
    new Editor.Path(''),
    Editor.Model.SourceRootDirectory.Assets
    );

    const faceCrop = assetManager.createNativeAsset(
    'FaceCropTexture',
    'MyFaceCrop',
    sourcePath
    ) as Editor.Assets.FaceCropTexture;

    if (!Editor.isNull(faceCrop)) {
    // Configure which face to track (0 = first detected face)
    faceCrop.faceIndex = 0;

    // Set the crop scale (width, height multiplier)
    faceCrop.scale = new vec2(1.5, 1.5);

    console.log(`Created FaceCropTexture "${faceCrop.name}": faceIndex=${faceCrop.faceIndex}, scale=${faceCrop.scale}`);
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    cacheFile: Path

    Path to the cached asset file.

    faceCenterMouthWeight: number

    Weight blending the crop between face center and mouth.

    faceIndex: number

    Index of the face to crop from the input texture.

    Import metadata for the asset.

    id: Uuid

    The unique id of the entity.

    inputTexture: Texture

    Source texture containing the face to crop.

    meta: Meta

    Metadata associated with this entity, providing access to its unique identifier and other descriptive properties.

    name: string

    The name of the asset.

    scale: vec2

    Size multiplier for the cropped face region.

    type: string

    The entity's type.

    Methods

    • Returns the name of this object's type.

      Returns string

    • Returns true if the object is of the specified type.

      Parameters

      • type: string

      Returns boolean

    • Returns true if this object refers to the same instance as the given object.

      Parameters

      Returns boolean