Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handling unable to capture game via window case #1381

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading