More work on UI

This commit is contained in:
2026-03-13 14:36:11 +01:00
parent c4eedfff1e
commit 1ce7dfa057
24 changed files with 262 additions and 27 deletions

View File

@@ -0,0 +1,19 @@
import { Main } from './main';
export class Lighting {
private _Main: Main;
gainInput: HTMLInputElement = document.querySelector(
'.ntsh_lightingsettings-gain',
);
exposureInput: HTMLInputElement = document.querySelector(
'.ntsh_lightingsettings-exposure',
);
whiteBalanceInput: HTMLInputElement = document.querySelector(
'.ntsh_lightingsettings-whitebalance',
);
constructor(Main: Main) {
this._Main = Main;
}
}