(file_path: str)
| 81 | ARGS = [GODOT_EXE, "--headless", "--path", STANDALONE_DIR] |
| 82 | |
| 83 | def get_plugin_name_from_file(file_path: str) -> str: |
| 84 | # get only the filename from the path |
| 85 | return os.path.basename(file_path).replace(".json", "") |
| 86 | |
| 87 | def get_asset_lib_plugin_name(plugin_name: str) -> str: |
| 88 | # get the immediate parent directory name + the file name - .json |
no outgoing calls
no test coverage detected