Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+3)

Hey, I made a video about small video games and decided to include your game into it. I enjoyed playing it. I had some difficulties there, though. For example, the character usually did not want to jump; nothing told me that I could shoot; I could not see what was below me; UI elements were positioned in unusual/uncomfortable spots. This message is just feedback to improve. I am not complaining. I still enjoyed playing your game. If you want me to cut your game from the video, let me know. However, I still hope that you like it because I make such videos every day. I will be pleased if you subscribe.

(+2)

Thanks buddy, I think it is a resolution problem cuz many others played my game but they didnt have any problem. Btw thanks for including my game. I am ur subscriber.

(+2)

thank you. Yeah. I got a cheap 4k monitor. It may be the problem. It still will be nice to check resolution problems because 4k monitors become more and more popular nowadays.

(+1)

Yeah , i just totally forgot to make my UI scalable . Learned loads of new things from you thanks

(+2)

Unity always had UI scaling problems. Don't worry. I am looking forward to playing new levels.

(+1)

Actually i fixed it now and tested it for every resoltion available and it is working fine now.

Also the menu screen is a total crap which i knew it was and will fix it too. Thanks for feedback learned a lot of things from u thanks.

(+2)

Some solutions to UI scaling problems:
You can anchor UI elements to its borders or get the UNITY AUTOMATIC UI ANCHORING plugin to fix UI problems.

Additionally, Unity has an option to let people choose the resolution before starting. It has to be somewhere in the project management section, so I would prefer the resolution you planned players to use. To test UI scaling, you can change aspect ratios during the play mode in the Unity Editor.

I personally use this C# code to fix my anchors through the code:

rectTransform = objectDragInstance.GetComponent<RectTransform>(); RectTransform parentRectTransform = null; if (rectTransform.transform.parent) parentRectTransform = rectTransform.transform.parent.GetComponent<RectTransform>(); if (!parentRectTransform) return; Undo.RecordObject(rectTransform, "Anchor UI Object"); Rect parentRect = parentRectTransform.rect; rectTransform.anchorMin = new Vector2(rectTransform.anchorMin.x + (rectTransform.offsetMin.x / parentRect.width), rectTransform.anchorMin.y + (rectTransform.offsetMin.y / parentRect.height)); rectTransform.anchorMax = new Vector2(rectTransform.anchorMax.x + (rectTransform.offsetMax.x / parentRect.width), rectTransform.anchorMax.y + (rectTransform.offsetMax.y / parentRect.height)); rectTransform.offsetMin = Vector2.zero; rectTransform.offsetMax = Vector2.zero; rectTransform.pivot = new Vector2(0.5f, 0.5f); rectTransform.pivot = new Vector2(0.5f, 0.5f);

(+1)

Thank you very much . Yeah i fixed it already.

I cant thank you enough. Really, the thing which u are doing for us small developers is outstanding. Keep it up bro and never get demotivated , we are all with you

(+1)

thank you. I enjoy it.