| 653 | } |
| 654 | |
| 655 | bool ProjectExportDialog::_validate_script_encryption_key(const String &p_key) { |
| 656 | bool is_valid = false; |
| 657 | |
| 658 | if (!p_key.is_empty() && p_key.is_valid_hex_number(false) && p_key.length() == 64) { |
| 659 | is_valid = true; |
| 660 | } |
| 661 | return is_valid; |
| 662 | } |
| 663 | |
| 664 | void ProjectExportDialog::_script_export_mode_changed(int p_mode) { |
| 665 | if (updating) { |
nothing calls this directly
no test coverage detected