Class ObjectTrackingNormalsTextureProvider

Base class for Texture Providers that crop an input texture.

//@input Asset.Texture screenCropTexture

var cropProvider = script.screenCropTexture.control;
aspect = cropProvider.inputTexture.control.getAspect();

var cropRect = cropProvider.cropRect;

var size = cropRect.getSize();
if (aspect > 1) {
size.x = size.x / aspect;
} else {
size.y = size.y * aspect;
}
cropRect.setSize(size);

Hierarchy (View Summary, Expand)

Constructors

Properties

inputTexture: Texture

Input texture to crop.

objectIndex: number

Methods

MMNEPVFCICPMFPCPTTAAATR