@awayjs/renderer
Version:
Renderer for AwayJS
15 lines (11 loc) • 306 B
text/typescript
import { IAnimator } from './IAnimator';
import { IMaterial } from './IMaterial';
import { Style } from './Style';
import { IContainer } from '@awayjs/view';
export interface IRenderContainer extends IContainer
{
style: Style;
animator: IAnimator;
material: IMaterial;
invalidateElements(): void;
}