EntityProcessingSystem不能与类型参数一起使用

本文关键字:一起 类型参数 不能 EntityProcessingSystem | 更新日期: 2023-09-27 17:50:24

我正在使用Artemis并试图扩展EntityProcessingSystem<SpatialForm, Transform>。然而,它告诉我The non-generic type 'Artemis.System.EntityProcessingSystem' cannot be used with type arguments;但是,它必须与类型参数一起使用。知道这是怎么回事吗?

我正在使用Artemis - https://github.com/thelinuxlich/artemis_CSharp和星际战士作为我的教程- https://github.com/thelinuxlich/starwarrior_CSharp

EntityProcessingSystem不能与类型参数一起使用

这个问题有点晚了,但对其他有同样问题的人来说。

参见:[Github Forum][1]

的问题
public class RenderSystem : EntityProcessingSystem<SpatialFormComponent, TransformComponent>

至少它让我的项目越过了那个点。