mx3d 2025.3.2-1.1 → 2025.3.21

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/index.d.ts CHANGED
@@ -125,18 +125,17 @@ declare module 'mx3d' {
125
125
  }
126
126
 
127
127
  export class Environment {
128
- private app;
129
- private lights;
130
- private _color;
131
- private background;
132
- private reflexEnabled;
133
- private reflexIntensity;
128
+ app: App;
129
+ lights: Dictionary<LightObject>;
130
+ _color: Runtime.Color4;
131
+ background: Runtime.Layer;
132
+ reflexEnabled: boolean;
133
+ reflexIntensity: number;
134
134
  constructor(_app: App);
135
135
  setTransparent(_visibility?: number): void;
136
136
  default(): void;
137
137
  set fogDistance(_value: number);
138
- setfogColor(_value: string): void;
139
- set color(_value: string);
138
+ set color(_value: Runtime.Color4);
140
139
  reflex(url: string, intensity: number): void;
141
140
  setBackground(url: string): void;
142
141
  setReflexEnabled(_reflexEnabled: boolean): void;