@@ -249,6 +249,7 @@ export type PreferencesValues = {|
249249 previewCrashReportUploadLevel : string ,
250250 gamesDashboardOrderBy : GamesDashboardOrderBy ,
251251 takeScreenshotOnPreview : boolean ,
252+ gameplayTestFramePosition : { | left : number , bottom : number | } | null ,
252253 showAiAskButtonInTitleBar : boolean ,
253254 automaticallyUseCreditsForAiRequests : boolean ,
254255 automaticallyApplyAiRequestEditsByProjectId : { [ string ] : boolean } ,
@@ -375,6 +376,10 @@ export type Preferences = {|
375376 orderBy : 'lastModifiedAt' | 'totalSessions' | 'weeklySessions'
376377 ) => void ,
377378 setTakeScreenshotOnPreview : ( enabled : boolean ) => void ,
379+ setGameplayTestFramePosition : ( position : { |
380+ left : number ,
381+ bottom : number ,
382+ | } ) => void ,
378383 setShowAiAskButtonInTitleBar : ( enabled : boolean ) = > void ,
379384 setAutomaticallyUseCreditsForAiRequests : ( enabled : boolean ) = > void ,
380385 setAutomaticallyApplyAiRequestEditsForProjectId : (
@@ -444,6 +449,7 @@ export const initialPreferences = {
444449 previewCrashReportUploadLevel : 'exclude-javascript-code-events' ,
445450 gamesDashboardOrderBy : 'lastModifiedAt' ,
446451 takeScreenshotOnPreview : true ,
452+ gameplayTestFramePosition : null ,
447453 showAiAskButtonInTitleBar : true ,
448454 automaticallyUseCreditsForAiRequests : false ,
449455 automaticallyApplyAiRequestEditsByProjectId : { } ,
@@ -533,6 +539,10 @@ export const initialPreferences = {
533539 orderBy : 'lastModifiedAt ' | ' totalSessions ' | 'weeklySessions'
534540 ) => { } ,
535541 setTakeScreenshotOnPreview : ( enabled : boolean ) = > { } ,
542+ setGameplayTestFramePosition : ( position : { |
543+ left : number ,
544+ bottom : number ,
545+ | } ) = > { } ,
536546 setShowAiAskButtonInTitleBar : ( enabled : boolean ) = > { } ,
537547 setAutomaticallyUseCreditsForAiRequests : ( enabled : boolean ) = > { } ,
538548 setAutomaticallyApplyAiRequestEditsForProjectId : (
0 commit comments