Python插件 放在Python文件夹中的init_unreal.py会在编辑器启动时自动加载,官方也给py提供了一些ue的api和装饰器,可以通过这些api来让编辑器生成对应的UClass数据,这也是可以用Python编写编辑器蓝图函数库的基础。 其中一部分unreal.py中的py侧装饰器: def uclass(): '''decorator used to define UClass types from Python''' def _uclass(type): generate_class(type) …