Get platform-specific Unity paths.
()
| 103 | |
| 104 | @lru_cache(maxsize=1) |
| 105 | def get_platform_paths() -> PlatformPaths: |
| 106 | """Get platform-specific Unity paths.""" |
| 107 | return PlatformPaths( |
| 108 | hub_cli=locate_hub_cli(), |
| 109 | editor_base=_get_platform_editor_base(), |
| 110 | ) |
| 111 | |
| 112 | |
| 113 | def get_installed_editors() -> list[InstalledEditor]: |
no test coverage detected