|
@@ -92,6 +92,7 @@ export class ServerController {
|
|
launch_instance: boolean,
|
|
launch_instance: boolean,
|
|
launch_scene: boolean,
|
|
launch_scene: boolean,
|
|
scene_file: string | undefined,
|
|
scene_file: string | undefined,
|
|
|
|
+ additional_options: string | undefined,
|
|
debug_data: GodotDebugData
|
|
debug_data: GodotDebugData
|
|
) {
|
|
) {
|
|
this.debug_data = debug_data;
|
|
this.debug_data = debug_data;
|
|
@@ -118,6 +119,9 @@ export class ServerController {
|
|
}
|
|
}
|
|
executable_line += ` "${filename}"`;
|
|
executable_line += ` "${filename}"`;
|
|
}
|
|
}
|
|
|
|
+ if(additional_options){
|
|
|
|
+ executable_line += " " + additional_options;
|
|
|
|
+ }
|
|
executable_line += this.breakpoint_string(
|
|
executable_line += this.breakpoint_string(
|
|
debug_data.get_all_breakpoints(),
|
|
debug_data.get_all_breakpoints(),
|
|
project_path
|
|
project_path
|