Phicademia – edu app project
10.02.2020Hey!It’s time to make something useful and helpful 馃檪 I have always been interested in education and this is how I started programming 馃檪 Once I gained some programming knowledge (there’s still plenty to learn) I decided to create some more serious project. And here it is, Phicademia – educational project for primary school pupils.For …
Physics2D.OverlapCircle
Physics2D.OverlapCircle() is used to check if some objects are within the specified range. It returns bools value so that we can assign this value to the variable. First argument sets the circle position, then it’s radius is specified. Finally we can check what objects are to be affected. We can make it by setting thoses …
Unity – Shooting with series
I thought it might be handy to make my enemy shoots few bullets at the same time. It’s a basic script without fancy conditions so I hope you will have no problems to understand it. I’m using InvokeRepeating for looping the shoot and then I use coroutines to make every shoot having a couple of …
Raycasting 3D and 2D
In this example we will print a name of the object that was clicked.
Saving and loading with SimpleJSON
Download this archive to get SimpleJson file that has to be unpacked and imported into Unity. You can go to github repository and download it from there as well – SimpleJSON github Add a code below to some script where Saving and Loading should be executed. That file is also attached to the zip file …
Bronze GameDev Achievements
I POZIOM Wy艣wietlanie tre艣ci w konsoli Tworzenie obiekt贸w Empty, Sprite Importowanie Asset贸w i Paczek Tworzenie skrypt贸w, dodawanie komponent贸w Rigidbody2D i Collider2D. Znajomo艣膰 podstawowych typ贸w zmiennych i umiej臋tno艣膰 ich u偶ycia (int, float, double, string) Tworzenie losowej liczby Stosowanie inkrementacji i dekrementacji Tworzenie wyra偶e艅 tekstowych za pomoc膮 konkatenacji Stosowanie Sorting Layer II POZIOM Umiej臋tno艣ci z poziomu I …
How to get started with Unity and Visual Studio
1.Download Unity Hub from Unity website: LINK 2.Install Unity Hub and create your own Unity ID (you can sign in with your google account). Open Unity Hub, go to Installs tab and click on ADD button. 3.Choose the latest Official Release and click NEXT 4.Tick the option to install the Visual Studio …
Moving a platform from A to B in Unity
This is about on how to move a platform( or any object) forth and back from point to point. In this example we will use a MoveTowards method.
Moving an object by Force
There are many ways to move an object. Today, we will look into on how to move an object that has Rigidbody component attached by using AddForce method. Create a Plane and a Sphere. Add a Rigidbody component to the sphere, create and attach a script to the sphere as well.