I'm working on a custom Editor tooling that depends on BakingSheet for intermediate steps. But I've found myself in need of overidding SheetContainerBase to support IProgress<float> in the async Bake and Store methods.
Could you make at least Bake and Store methods virtual to enable this use case?
One possible solution for better extending is extracting an ISheetContainer interface out of SheetContainerBase, and making SheetConvertingContext use this interface instead of the abstract class.
With either solutions, people can freely provide their own custom implementation of SheetContainerBase without the need of modifying your source code.
I'm working on a custom Editor tooling that depends on BakingSheet for intermediate steps. But I've found myself in need of overidding
SheetContainerBaseto supportIProgress<float>in the asyncBakeandStoremethods.Could you make at least
BakeandStoremethods virtual to enable this use case?One possible solution for better extending is extracting an
ISheetContainerinterface out ofSheetContainerBase, and makingSheetConvertingContextuse this interface instead of the abstract class.With either solutions, people can freely provide their own custom implementation of
SheetContainerBasewithout the need of modifying your source code.