@needle-tools/engine 2.44.0-pre → 2.44.1-pre

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/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this package will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.44.1-pre] - 2022-11-13
8
+ - Add: RemoteSkybox exposes ``background`` and ``environmnet`` properties to configure if the loaded skybox is set for the scene background and/or the environment light
9
+ - Change: Expose TypeStore
10
+
7
11
  ## [2.44.0-pre] - 2022-11-11
8
12
  - Add: Particles limit velocity over time
9
13
  - Add: Particles rotation by speed
@@ -1914,6 +1914,7 @@ declare module "engine/engine_util_decorator" {
1914
1914
  export const validate: (set?: setter, get?: getter) => (target: IComponent | any, propertyKey: string, descriptor?: undefined) => void;
1915
1915
  }
1916
1916
  declare module "engine/api" {
1917
+ export { TypeStore } from "engine/engine_typestore";
1917
1918
  export { InstancingUtil } from "engine/engine_instancing";
1918
1919
  export * from "engine/engine_gameobject";
1919
1920
  export * from "engine/engine_components";
@@ -4814,6 +4815,8 @@ declare module "engine-components/Skybox" {
4814
4815
  export class RemoteSkybox extends Behaviour {
4815
4816
  url?: string;
4816
4817
  allowDrop: boolean;
4818
+ background: boolean;
4819
+ environment: boolean;
4817
4820
  private _loader?;
4818
4821
  private _prevLoadedEnvironment?;
4819
4822
  private _prevEnvironment;