Skip to main content
  1. Some of My Projects/

Cross 'Em All

·1 min· loading · loading ·

Players must dribble, crossover, and dunk their way to victory while also answering trivia questions to advance in the game. It’s a perfect blend of athleticism and intellect, designed to challenge both your physical and mental skills. “Cross’em All” is more than just a basketball game; it’s a test of both your sports skills and your knowledge. As you progress, you’ll face trivia questions that can either propel you forward or set you back, depending on your answers. This game is designed to keep players engaged with its fast-paced action and brain-teasing challenges.

https://play.google.com/store/apps/details?id=com.flatgames.crossemall&hl=en

Reply by Email

Related

13. Network Simulation
·2 mins· loading · loading
This topic is a continuation of the previous one. Let’s continue by considering that we are running our game with 7 users at 10 FPS. If we receive data traffic at 10 FPS, we will frequently experience lag in the game.
12. Photon PUN and Issues
·5 mins· loading · loading
I don’t have an alternative system to recommend instead of Photon because most services have similar constraints. As discussed in the theory of constraints, measures are taken according to the constraints in each project, and these measures aim to maximize profit.
11. Addressables vs. Instantiate System
·3 mins· loading · loading
What is Addressables? The Addressable Asset System provides an easy way to load/unload assets from memory based on an “address.” It simplifies asset management by making it easier to create and distribute content packages, reducing the complexity of managing assets.
10. MessagePipe vs. UnityEvent
·1 min· loading · loading
In our games, we use structures like delegates, events, UnityEvent, etc., for instant communication in rapidly changing scenarios. However, because these occur and disappear “instantly,” they cause “instant” Garbage Allocation followed by Garbage Collection.
9. What is UniTask, and What Is It Not?
·1 min· loading · loading
UniTask is a framework specifically developed for Unity. Like VContainer, it’s a system that preemptively solves potential issues we might encounter in Unity. It is not a new architecture or a newly discovered technology.
8. Synchronous and Asynchronous Concepts
·2 mins· loading · loading
Synchronous Programming Most of the programs we write execute the code from top to bottom in the order it was written. Everything is done sequentially. For example, this code illustrates this: