Hello, I'm currently trying to construct an asset manually in code instead of loading it and later pushing that into a resource that contains handles to previously loaded assets.
But I can't seem to be able to create a handle myself?
let asset = MyAsset { something = 23 };
all_my_assets.0.push(asset); // Complains because it isn't of type Handle<MyAsset>
is there anything i can do?