diff --git a/CHANGELOG.md b/CHANGELOG.md index 2df09d5..14e02ab 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +Version 0.5.12 (June 13th 2021) +----------------------------- + * Fix duplicate identifier in definitions file + Version 0.5.11 (May 24th 2021) ----------------------------- * Delete Dom dependency diff --git a/dist/roostr.d.ts b/dist/roostr.d.ts index c6d47e9..f16290f 100644 --- a/dist/roostr.d.ts +++ b/dist/roostr.d.ts @@ -23,6 +23,7 @@ * http://roostrjs.lcluber.com */ import { Vector3, Matrix4x3, Matrix4x4 } from '@lcluber/type6js'; + export declare class Camera { viewMatrix: Matrix4x3; projectionMatrix: Matrix4x4; @@ -153,9 +154,6 @@ export declare class VWing extends BasicMesh { - - -import { Matrix4x3 } from '@lcluber/type6js'; export interface IGeometry { vertices: number[] | null; indices: number[] | null; @@ -224,7 +222,6 @@ export interface IFlatLights { direction: number[]; type: number[]; } -import { Vector3 } from '@lcluber/type6js'; export declare class DirectionalLight { position: Vector3; @@ -246,7 +243,6 @@ export declare class PointLight extends DirectionalLight { setLinearAttenuation(): void; setQuadraticAttenuation(): void; } -import { Vector3 } from '@lcluber/type6js'; export declare class SpotLight extends PointLight { cutoff: number; @@ -257,7 +253,7 @@ export declare class SpotLight extends PointLight { setExponent(): void; setDirection(): void; } -import { Vector3 } from '@lcluber/type6js'; + export declare class Material { ambient: Vector3; @@ -267,9 +263,6 @@ export declare class Material { uniforms: IMaterialUniforms; constructor(); } -import { Matrix4x3 } from '@lcluber/type6js'; - - @@ -374,28 +367,6 @@ export declare class SceneRenderer { } - - - - - - - - - - - - - - - - - - - - - - export declare class Lights { directionals: DirectionalLight[]; points: PointLight[]; @@ -438,7 +409,7 @@ export declare class Scene { private computeWorldMatrices; private renderBlended; } -import { Matrix4x3 } from '@lcluber/type6js'; + export declare class SceneGraph { model: Array; nbModel: number; diff --git a/package.json b/package.json index 371b786..d09b8fd 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lcluber/roostrjs", - "version": "0.5.11", + "version": "0.5.12", "description": "WebGL 3D engine written in TypeScript", "keywords": [ "WebGL 3D engine"