Hi,
I have a resource, that is inserted and accessible in systems as Res<MyResource> but I need to access this resource when constructing a bind group in a impl AsBindGroup block and when using type Param = SRes<MyResource> in the AsBindGroup trait, this Resource is not present and the app crashes. I can access it as an option but it is never present when accessed from the unprepared_bind_group() function parameter, even when it is accessible in a "normal" system parameter.
How can I access this resource from this function?
Thanks