Update src/ui/move-info-overlay.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
gruxor 2024-09-11 17:20:48 -04:00 committed by GitHub
parent 9c7f6020d5
commit ef8696fd5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 3 deletions

View File

@ -15,9 +15,11 @@ export interface MoveInfoOverlaySettings {
//location and width of the component; unaffected by scaling
x?: number;
y?: number;
width?: number; // default is always half the screen, regardless of scale
hideEffectBox?: boolean; // whether or not the small secondary box should be shown
hideBg?: boolean; // whether to hide the window background
/** Default is always half the screen, regardless of scale */
width?: number;
/** Determines whether to display the small secondary box */
hideEffectBox?: boolean;
hideBg?: boolean;
}
const EFF_HEIGHT = 48;