Skip to content

Commit

Permalink
Handling unable to capture game via window case
Browse files Browse the repository at this point in the history
  • Loading branch information
avoitenko-logitech committed Dec 13, 2023
1 parent fee0bf6 commit ef9d70d
Show file tree
Hide file tree
Showing 8 changed files with 112 additions and 65 deletions.
9 changes: 8 additions & 1 deletion js/module.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ export declare const enum ETextType {
Multiline = 2,
TextInfo = 3
}
export declare const enum ETextInfoType {
Normal = 0,
Warning = 1,
Error = 2,
}
export declare const enum ENumberType {
Scroller = 0,
Slider = 1
Expand Down Expand Up @@ -142,7 +147,8 @@ export declare const enum ESourceOutputFlags {
Composite = 64,
DoNotDuplicate = 128,
Deprecated = 256,
DoNotSelfMonitor = 512
DoNotSelfMonitor = 512,
ForceUiRefresh = 1073741824,
}
export declare const enum ESceneDupType {
Refs = 0,
Expand Down Expand Up @@ -399,6 +405,7 @@ export interface ITextProperty extends IProperty {
}
export interface ITextDetails {
readonly type: ETextType;
readonly infoType: ETextInfoType;
}
export interface INumberProperty extends IProperty {
readonly details: INumberDetails;
Expand Down
Loading

0 comments on commit ef9d70d

Please sign in to comment.