Sir I've posted the Game on time but my file is giving some problem to install. Is it allowed to change the exe file to zipped one or should I let it be as no one will be able to download my game. Please suggest
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.
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.
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.
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);
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
Comments
Congrats on winning buddy... this jam was a wired one...i also won...where to collect the prize
Thanks, Congrats to you too .
I think nikhil sir will send us the 25 dollar amount.on g pay. All we have to do is wait
Hey buddy,
I have pinged you on Google Pay. Please reply there and I will send you the amount.
Sir I've posted the Game on time but my file is giving some problem to install. Is it allowed to change the exe file to zipped one or should I let it be as no one will be able to download my game. Please suggest
Thanking you
Regards
Congrats on winnin buddy.
Thanks,
I played your game and honestly it was very good.
It was a refreshing experience
My Google pay number----
9450626915
Google pay id ---. yourgamedev07@okicici
Congratulations on winning🎉🎉🎉🎉
Thanks buddy
Congratz on winning the jam GameDev. You deserved this one!
Actually you deserved it
One of the best game ,has good potential, creative story, there are little bugs(not a big deal at all) and hard to predict the next move.Keep going.
Sincerely,
a very small game developer
Thanks a lot
Your game is very good. Please check this also
https://samarth-77.itch.io/sacrific-run
BASIC CONTROLS--------
A and D --FOR MOVING
F to --SHOOT
SPACE to --JUMP.
DIRECTION KEY + SPACE -- TO STICK TO ANYTHING
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.
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.
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.
Yeah , i just totally forgot to make my UI scalable . Learned loads of new things from you thanks
Unity always had UI scaling problems. Don't worry. I am looking forward to playing new levels.
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.
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);
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
thank you. I enjoy it.
Nice game bro, good concept
Feedback: - It was too dark, can't properly see platforms
Thanks
yeah actually thats the catch, making it difficult for player to predict next move.
enjoyed it!
Thanks for playing.
Anything which can be improved?
Please leave your feedbacks in the comment section. It is way more important for me.