Fix typo - "collison" -> "collision"
This commit is contained in:
parent
f8745f2f71
commit
eba8be6e45
9 changed files with 17 additions and 17 deletions
|
|
@ -134,7 +134,7 @@ Error EditorRunNative::run_native(int p_idx, int p_platform) {
|
|||
|
||||
bool deploy_debug_remote = is_deploy_debug_remote_enabled();
|
||||
bool deploy_dumb = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_file_server", false);
|
||||
bool debug_collisions = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_debug_collisons", false);
|
||||
bool debug_collisions = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_debug_collisions", false);
|
||||
bool debug_navigation = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_debug_navigation", false);
|
||||
|
||||
if (deploy_debug_remote) {
|
||||
|
|
@ -144,7 +144,7 @@ Error EditorRunNative::run_native(int p_idx, int p_platform) {
|
|||
flags |= EditorExportPlatform::DEBUG_FLAG_DUMB_CLIENT;
|
||||
}
|
||||
if (debug_collisions) {
|
||||
flags |= EditorExportPlatform::DEBUG_FLAG_VIEW_COLLISONS;
|
||||
flags |= EditorExportPlatform::DEBUG_FLAG_VIEW_COLLISIONS;
|
||||
}
|
||||
if (debug_navigation) {
|
||||
flags |= EditorExportPlatform::DEBUG_FLAG_VIEW_NAVIGATION;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue