Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine...

8
Unity engine – introduction Maciej Buczyński

Transcript of Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine...

Page 1: Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine –introduction Maciej Buczyński. What is Unity? •Big software package used to make

Unity engine – introductionMaciej Buczyński

Page 2: Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine –introduction Maciej Buczyński. What is Unity? •Big software package used to make

What is Unity?

• Big software package used to make games (not only)

• Allows us to make fast prototypes as well as full games

• The games are multiplatform (PC, mobile, web, …)

• Free for personal use

• Good place to start when you are interested in game development

• One of the best game engines for beginners

• Is both a graphics and physics engine. We don’t have to implementour own gravity/collision system (but we can)

Page 3: Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine –introduction Maciej Buczyński. What is Unity? •Big software package used to make

Example games made with Unity

Page 4: Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine –introduction Maciej Buczyński. What is Unity? •Big software package used to make

Example games made with Unity

Page 5: Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine –introduction Maciej Buczyński. What is Unity? •Big software package used to make

Example games made with Unity

Page 6: Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine –introduction Maciej Buczyński. What is Unity? •Big software package used to make

Example games made with Unity

Page 7: Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine –introduction Maciej Buczyński. What is Unity? •Big software package used to make

How to start?

• Go to https://store.unity.com/products/unity-personal

• Download and install the personal version

• Official tutorials: https://unity3d.com/learn/tutorials

• There are also many tutorials on youtube

• Play around with the engine

Page 8: Unity engine – introductionmajanik/data/Csharp/Projects/2018/Buczynski_Un… · Unity engine –introduction Maciej Buczyński. What is Unity? •Big software package used to make

Live coding example