BakingSystem type.

Hello,

There is a BakingSystem type that has a BlobAssetStore which the systembase doesn’t have.
But it does not have the [WorldSystemFilter(WorldSystemFilterFlags.BakingSystem)].

Any particular reason why the recommended approach it to expend SystemBase and add the attribute, instead of just extending the BakingSystem and have it have the attibute ?

1 Like

BakingSystem is what runs the Bakers. It probably should be renamed to BakerSystem. The recommended approach is to use ISystem for custom baking systems if your use case allows.

1 Like