从Python中删除UnrealScript中的actor



我试图删除一些演员在场景中使用python,但不断得到错误,我不知道如何修改我的代码。

第二句中产生错误:

get_editor_subsystem()只接受1个参数(给定0)

这是我的代码:

path=“Test.thisIsTest”
unrealSystem=unreal.get_editor_subsystem()
delete_actor=unrealSystem.get_actor_reference(path)
unreal.EditorActorSubsystem.destroy_actor(delete_actor)

您需要在第2行指定子系统类型:

unreal.get_editor_subsystem(unreal.EditorActorSubsystem)

我希望这对你有帮助。

相关内容

  • 没有找到相关文章

最新更新