Posts

Tic Tac Toe

Image
If you are one of the people who like to learn through videos πŸ˜‰, you can follow the explanation through a quick video on YouTube πŸ‘‰ Setting up the Project: Start by opening Unity and creating a new 2D project. Name the project " TicTac " (or any other name as preferred). Choose a Location so save the Project. Select " 2D " to set the default Project Type to 2D . Click the " Create project " button to create the project Creating the game board: We need to create the background, create the game board and then break up the game board into 9 uniform spaces with a grid overlay. As we will be using the built-in UI toolset for this, the first thing we need to create is a UI Panel . 1- Create a new UI Panel element in the scene by using Create > UI > Pane l 2- This will create a new UI Panel , parent Canvas, and EventSystem in the scene. The Canvas and the Event System are required by the UI toolset. We will adjust the canvas scale to fit...

Flappy Bird Using Unity 2D

Image
 

Angry Birds Using Unity 2D

Image
           Basically, the game series focuses on a flock of birds referred to by the same name who try to save their eggs from  green-colored  pigs. Inspired by the game Crush the Castle🏠, the game has been praised for its successful combination of fun gameplay, comical style, and low price. Its popularity led to many spin-offs, versions of  Angry Birds  created for PCs and video game consoles, a market for merchandise featuring its characters,  Angry Birds  Toons, a televised animated series, and two films; The  Angry Birds  Movie and its sequel The  Angry Birds  Movie 2. By January 2014, there had been over 2 billion downloads across all platforms 😎, including both regular and special editions                            If you are one of the people who like to learn through videos πŸ˜‰, you can follow the explanation through a quick vide...

Compiler vs Assembler

Image
     ·         Section one : Language Processors   1-The title of our research for this video is Language Prossers such as: Compiler and Assempler .   2-We will explain the mechanism of action of each of them, what is the difference between them, and correct some misconceptions   3-let’s start with the definition ->  language processor  is a software program designed or used to perform tasks such as processing program code to machine code. Language processors are found in languages such as  Fortran  and  COBOL .  )   They are one of the first programming languages to be used) I’ll make a certain video to talk about them .   ·          Section two:  Compiler 1-let’s start with the  compiler: is converting the source code written by the programmer to a machine language to create an executable program. 2-as you see here it shows ...