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 { Fill } from "./fill";
import { IBaseDrawObject, IDrawNode, IRectangle } from "./objects"; import { DrawLeafs, IDrawNode, IRectangleDrawObject } from "./objects";
export interface IScene { export interface IScene {
node: IDrawNode; node: IDrawNode;
selection?: IRectangle; selection?: IDrawNode;
spotlight: IRectangle[]; spotlight: IRectangleDrawObject[];
background: Fill; background: Fill;
static: IBaseDrawObject[]; static: DrawLeafs[];
} }

View file

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