swf2ass/src/RenderedObject.php

24 lines
705 B
PHP

<?php
namespace swf2ass;
class RenderedObject {
/** @var int[] */
public array $depth;
public int $objectId;
public DrawPathList $drawPathList;
public ?Shape $clip;
public ColorTransform $colorTransform;
public MatrixTransform $matrixTransform;
public function __construct(array $depth, int $objectId, DrawPathList $drawPathList, ColorTransform $colorTransform, MatrixTransform $matrixTransform, ?Shape $clip = null) {
$this->depth = $depth;
$this->objectId = $objectId;
$this->drawPathList = $drawPathList;
$this->colorTransform = $colorTransform;
$this->matrixTransform = $matrixTransform;
$this->clip = $clip;
}
}