We want users to be able to load things like gltfs to enable interoperability with tools like Blender. As such, we'll need to create WebGPU flavors for both PShape and PImage that are backed by a Bevy Mesh and Image in the Bevy asset system. We can take advantage of Bevy's asset loading to do so. One tricky bit will be that Bevy's asset loading is async, so we may need to block and poll until it's complete or alternatively upstream a blocking API to make our life easier.