I’m trying to implement canvas drawing in C++ and want to find an existing canvas.
The documentation says:
Use FindCanvasRenderTarget2D() to find or create a render target texture by unique name...
But this function doesn’t exist.
I’m trying to implement canvas drawing in C++ and want to find an existing canvas.
The documentation says:
Use FindCanvasRenderTarget2D() to find or create a render target texture by unique name...
But this function doesn’t exist.
Hey rotwang-
I have entered a report about the misleading information in the documentation. However there does appear to be a CreateCanvasRenderTarget2D() function on the same docs page that you should be able to use to create your canvas render target.
Cheers
, thanks,
reading the docs, I thought there is an existing canvas to draw on. I’m not sure, if a canvas created by me, is recognized by the render chain. I will try this. Thank you.