gl-draw 0.18.2 → 0.18.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1825,6 +1825,7 @@ declare class HelperController {
|
|
|
1825
1825
|
constructor(options: Options_10);
|
|
1826
1826
|
add(object: any): void;
|
|
1827
1827
|
addViewHelper(): void;
|
|
1828
|
+
addSceneHelper(): void;
|
|
1828
1829
|
remove(object: any): void;
|
|
1829
1830
|
removeAll(): void;
|
|
1830
1831
|
removeAllExcludeScene(): void;
|
|
@@ -2382,9 +2383,7 @@ declare interface Options_2 {
|
|
|
2382
2383
|
container: HTMLElement;
|
|
2383
2384
|
stats?: boolean;
|
|
2384
2385
|
helper?: boolean;
|
|
2385
|
-
viewHelper?: boolean;
|
|
2386
2386
|
controls?: Partial<ControlsParams>;
|
|
2387
|
-
transformControls?: boolean;
|
|
2388
2387
|
renderer?: Partial<RendererParams>;
|
|
2389
2388
|
composer?: Partial<ComposerParams>;
|
|
2390
2389
|
loader?: Partial<LoaderParams>;
|
|
@@ -2510,9 +2509,7 @@ declare class Pencil {
|
|
|
2510
2509
|
static options: {
|
|
2511
2510
|
stats: boolean;
|
|
2512
2511
|
helper: boolean;
|
|
2513
|
-
viewHelper: boolean;
|
|
2514
2512
|
controls: boolean;
|
|
2515
|
-
transformControls: boolean;
|
|
2516
2513
|
renderer: {
|
|
2517
2514
|
antialias: boolean;
|
|
2518
2515
|
devicePixelRatio: number;
|
|
@@ -2593,7 +2590,7 @@ declare class Pencil {
|
|
|
2593
2590
|
private init;
|
|
2594
2591
|
private initComposer;
|
|
2595
2592
|
private initCSSRenderer;
|
|
2596
|
-
|
|
2593
|
+
initTransformControls(): void;
|
|
2597
2594
|
getSize(): {
|
|
2598
2595
|
width: number;
|
|
2599
2596
|
height: number;
|