Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

i did the same method as feefyefowfum. Although in addtion I set up A UGUI Canvas with another camera. Created a "rawImage UI Element" which I set to 256x256. (while the RenderTexture was set to 64x64 of course) Now you can have any size player. and the RenderTexture will always be displayed in the center of the screen at a size of 256x256 regardless of window size and/or ratio.

One thing I noticed is that you can't mouse click any of the UI if you are rendering the UI to the rendertexture. I might try to fix this later but for now I'll stick to selection with keys.

(1 edit)

I have not tried this yet, but theoretically, if you are using pixel fonts and assuming that the camera that shows the render texture is orthographic, you can just "align" the pixels of the font to the render texture. Going with that, this can also work with any artwork. Doing so, the UI is in front of the render texture (assuming that the Canvas is set to "Screen Space - Camera")

EDIT: the other idea is if you are rendering your UI to the render texture as well, you could add trigger colliders to the render texture, but that can be tedious to setup especially if you have animated UI. A possible solution is to have static "hotspots" on the render texture, and just swap the UI that fits into those hotspots.