我正在尝试在 PyCharm 中编写虚幻脚本。目前,我希望使用自动完成功能,并且我已经加载了 pip 文件并将存根添加到解释器路径中,并且我已输入到 idea.properties 文件中。 idea.max.intellisense.filesize = 50000
但是,当我在 PyCharm 中输入“unreal.”时,我会看到一个下拉菜单,其中显示“if、ifn、ifnn、main 等”(见图),而不是 Unreal 方法。我应该怎么做才能获得正确的下拉效果?
确保您选择了正确的 Python 解释器并且 前往
File
> Settings
> Project: <your_project_name>
> Python Interpreter
。
File
> Settings
> Editor
> General
> Auto Import
,并在 Exclude from Import and Completion
部分下,确保不排除“unreal”包。
File
> Invalidate Caches / Restart...
并选择“无效并重新启动”。
File
> Settings
> Editor
> General
> Code Completion
确保启用“自动弹出代码完成”和“键入时显示建议”。