Release package version 0.0.8
All checks were successful
Checks / build (push) Successful in 23s

Update interface of scene
This commit is contained in:
Andrey Kernichniy 2026-03-07 22:32:22 +07:00
parent f8805f404f
commit b20703e6e6
2 changed files with 5 additions and 5 deletions

View file

@ -1,10 +1,10 @@
import { Fill } from "./fill";
import { IBaseDrawObject, IDrawNode, IRectangle } from "./objects";
import { DrawLeafs, IDrawNode, IRectangleDrawObject } from "./objects";
export interface IScene {
node: IDrawNode;
selection?: IRectangle;
spotlight: IRectangle[];
selection?: IDrawNode;
spotlight: IRectangleDrawObject[];
background: Fill;
static: IBaseDrawObject[];
static: DrawLeafs[];
}

View file

@ -1,6 +1,6 @@
{
"name": "@gxc-solutions/renderer-base",
"version": "0.0.7",
"version": "0.0.8",
"main": "index.js",
"author": "GXC Solutions",
"publishConfig": {