Some excerpts from my sketchbook. Just the ones I like the most. My nan really liked "Eyes in the fire". The picture quality isn't great; I'm just using my shitty phone camera. I'm still learning but I'm proud of these.

seen from Italy
seen from Italy

seen from Singapore
seen from China

seen from United States
seen from Lithuania

seen from Nigeria

seen from Australia

seen from Hungary
seen from Egypt
seen from China
seen from Poland
seen from New Zealand
seen from TĂŒrkiye

seen from New Zealand
seen from United States
seen from China

seen from New Zealand
seen from United States
seen from Lithuania
Some excerpts from my sketchbook. Just the ones I like the most. My nan really liked "Eyes in the fire". The picture quality isn't great; I'm just using my shitty phone camera. I'm still learning but I'm proud of these.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch âą No registration required âą HD streaming
UK 1987
Drew these both a while ago. One on each side of a piece of card. I needed a new bookmark and wanted to make something nice. The ink kept blotting onto the pages tho so I was going to laminate it but didn't have a machine so I just absolutely covered it in cello tape. It kinda looks like shit now but at least I took these pics before I did that xD.
UK 1985
Unityâs Roll a Ball tutorial
I had a lot of problems with this tutorial, I followed Unityâs tutorial to the tiniest detail twice and the ball would just not move. I ended up needing to do outside research on why it would not move and tried many suggestions, and finally one of the suggestions worked.Â
Image 1 is the coding from the Unityâs tutorial that I had originally. Doubled checked it many times, perfect match. Ball did not move.
Image 2 is from the overall finished game coding, so it is longer. This coding helped make the ball move. I circled the coding in RED (the revision that helped make the ball FINALLLYYY move.)

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch âą No registration required âą HD streaming
Update the Ball
Hello everyone! :D
Remember when the last time I created a Roll a Ball game? So I decide to update it a little bit (and maybe more later). New map, more command, and now you can âGame Overâ instead falling for eternity, yeay!
Here is the new map. I try to make some contours with shapes. A bit nice right? haha At least itâs better than just a 2x2 square arena like before right? You can see two grounds there, and connected with an uphill path, and also some obstacles.
Because of the maps, itâs a bit hard to explore the whole map (or easy enough if youâre a pro-gamer, who knows). Then jump and dash move are an option for you. Itâs easy to make jump and dash move, especially jump move, because I accidentally make it when code for dash move. However, make it a smooth motion, itâs a bit struggle for me. I think youâll still find some glitch on jump move, but I hope nothing wrong with the dash. You can see below, there will be a particle when we dash. An unnecessary upgrade, but make more fun :)
Another thing, you can die here, yeay. Not actually die, just a common game over. And you can restart the game after it.
Well, Itâs a pain to achieve this step for a beginner like me. But when it works, Iâm glad for experienced it. You can try the new update on the link below.
https://rezkytamap.itch.io/roll-a-ball
That was fun. It actually gave me most of the basics I need to get started on my project, and all in only a couple of hours work total.
I need to learn a lot more about the UI next. The Unity editor has a very natural way of deciding what youâre pointing at; I hope it should be possible to incorporate that into a âgameâ.
Anyone who has tried out Unity is probably familiar with the âroll-a-ballâ tutorial. Going through it has so far given me the impression that Unity is easily as flexible as I need it to be: it has an intuitive grid coordinate system, smooth geometric objects built in and apparently intuitive appearance control.
An initial concern is that all movement and collisions seem to be controlled by âphysicsâ: to control the ball, for instance, the player input is interpreted as a force. This aspect shouldnât affect animation, so for the basic goals of my project I may be able to avoid physics when I need to, but when I want more dynamic networks later I may have some difficulties.