SlideShare uma empresa Scribd logo
1 de 50
Baixar para ler offline
Ing.LauraMilenaParraNavarro,Mag.
Ing. Laura Milena Parra Navarro, Mg.
Universitaria de Investigación y Desarrollo
8 de Abril 2017
Introducción a Unity
Motor de Desarrollo
Unity is a multi-platform, integrated IDE for scripting
games, and working with 3D virtual worlds.
• Game engine
3D objects / lighting / physics / animation / scripting
• Accompanying script editor
MonoDevelop (win/mac)
Can also use Visual Studio (Windows)
• 3D terrain editor
• 3D object animation manager
• GUI system
• Executable exporter many platforms:
Native application / web player / iPhone / Android / Wii






MonoDevelop
Unity puede usarse junto con 3ds Max, Maya, Softimage, Blender,
Modo, ZBrush, Cinema 4D, Cheetah3D, Adobe Photoshop, Adobe Fireworks y
Allegorithmic Substance.
Los cambios realizados a los objetos creados con estos productos se actualizan
automáticamente en todas las instancias de ese objeto durante todo el proyecto
sin necesidad de volver a importar manualmente.
A screen shot of the game created using Unity 3D Engine for PC.
As you can see in the screen shot that the graphics are realistic. See how the shadow of
tree is accordingly to the sun light and the rest of graphics are also giving it a realistic view.
You also play these type of games now a days in your PC’s. Ever wonder how they are
created? Well now you can do it using Unity Engine.
 Materials son definiciones acerca de cómo la superficie debería ser
renderizada, incluyendo referencias a texturas utilizadas, información del
tiling (suelo de baldosas), tines de color y más. Las opciones disponibles para
un material depende en qué shader del materia está utilizando.
 Shaders son scripts pequeños que contienen los cálculos de matemáticas y
algoritmos para calcular el color de cada pixel renderizado, basándose en el
input de iluminación y la configuración del Material.
 Textures son imágenes bitmap. Un material contiene referencias a texturas,
para que el shader del Material puede utilizar las texturas mientras calcula el
color de la superficie de un objeto. Adicionalmente a el color básico (albedo)
de la superficie de un objeto, las texturas pueden representar otros aspectos
de la superficie de un material tal como su reflectividad o rugosidad.
ibjects.com
System Requirements
Windows: XP SP2 or later;
Mac OS X: Intel CPU & "Snow Leopard" 10.6 or later.
Note that Unity was not tested on server versions of Windows and OS X.
Graphics card with DirectX 9 level (shader model 2.0) capabilities. Any card made since
2004 should work.
Using Occlusion Culling requires GPU (Graphics Processing Unit) with Occlusion Query
support (some Intel GPUs do not support that).
Installation
Installing Unity 3D is simple.
• Download the latest Unity distribution from http://unity3d.com/unity/download/
• Run the installer with default settings.
• Run Unity for the first time. It may open the demo project, or it will ask you to create a
project. Open the demo or create a new project without changing any settings.
• Follow the instructions to register online, fill out your email address and just use the
free/indie license.
• Go to File > Open Project
• When your project will be loaded, it will open in unity. More on next slide
Installing
ibjects.com
The extension of a unity file is .unity. You can make games on unity for different
platforms that include Android and iOS.
• This screen shot is showing the
platforms on which you can export
your .unity file.
• So now you see the unity is a huge
tool if you are interested in game
development.
• However, in these slides we will only
cover Unity for PC games.
• Unity is a freeware software. Bur it is
now freeware if you want to use it for
commercial purpose. (Selling your
games in market)
Introduction
El scripting viene a través de Mono. El script se basa en Mono, la
implementación de código abierto de .NET Framework. Los programadores
pueden utilizar UnityScript (un lenguaje personalizado inspirado en la
sintaxis ECMAScript), C# o Boo (que tiene una sintaxis inspirada en Python).
A partir de la versión 3.0 añade una versión personalizada de MonoDevelop
para la depuración de scripts.
Programación de scripts
La tecnología está diseñada para llevar el movimiento fluido y natural de los
personajes con una interfaz eficiente. Mecanim incluye herramientas para la
creación de máquinas de estados, árboles de mezcla, manipulación de los
conocimientos nativos de animaciones, desde el editor de Unity.
http://docs.unity3d.com/Documentation/Manual/index.html
Es un recurso disponible en el editor de Unity.
Más de 150.000 usuarios de Unity pueden acceder a la
colección de más de 4.400 paquetes de Assets en una
amplia gama de categorías, incluyendo modelos 3D,
texturas y materiales, sistemas de partículas, música y
efectos de sonido, tutoriales y proyectos, paquetes de
scripts, extensiones para el editor y servicios en línea.
https://www.assetstore.unity3d.com/en/
Diseño y Desarrollo de Videojuegos
• Design and Development of Games for Learning
• Digital Game-Based Learning
Diseño y Desarrollo de Videojuegos
Diseño y Desarrollo de Videojuegos
Screen Shot of Unity Main Interface with a Project Opened
1 – Scene
Scene is same as Hierarchy(2) = same, just diff. views
Editable (design-time) 3D game objects in the current scene
2 – Hierarchy
Text list of game objects and sub-objects in the current scene
3 – Inspector
Properties for currently selected
4 – Game
Preview how game will look when executing
5 – Project
Contents of Project ‘assets’ folder (i.e. files in that folder)
– library of scripts, digital media files, and scenes
This is the top most bar below Menu Bar in Unity Main Interface Window.
Click-drag to drag the camera around
Hold Alt and click-drag to orbit the camera around the current pivot point.
Hold Control and click-drag to zoom the camera.
Above the Inspector panel, you'll see the Layers and Layout dropdowns. Game Objects can
be grouped into layers, much like in Photoshop or Flash. Unity stores a few commonly used
layouts in the Layout dropdown. You can also save and load your own custom layouts.
These three buttons help you test your game and control playback. As you've seen, the Play
button starts and stops your game. The Pause button works as expected—it pauses your
game so that you can make changes to it on the fly. The third button is a Step-Through
control; use it to advance frame-by-frame through your game so that you can more tightly
control what's going on.
The Scene window is where you can position your Game Objects and move things
around. This window has various controls to change its level of detail. Use these
controls to toggle lighing on and off, and to display the window contents with textures,
wireframes, or a combination of both. You can use the colorful gizmo in the top-right
corner to constrain the window to the X, Y, and Z axes to view the top and sides of your
scene. Click on the white box in the middle to return to perspective view. This is what
the Scene window looks like when you start a new project or create a new Scene.
You can think of scenes as levels or stages in your
game.
A unity “scene” is essentially a “level” or “screen”
Typical game
Welcome / main menu screen
Buttons: play game / see high scores / read
instructions / change input settings
Level 1 / Level complete / Level 2 etc…
Game Over / Enter details for new High Score …
All the above would be separate “scenes” in unity
Some scenes may be entirely based around the Unity
GUI scripts / components – i.e. be text / buttons on
screen
The Game window shows you what your players will see. When you click on the Play
button to test your game (as you just did with the Island Demo), the results of your
efforts play out in this window. Toggle the Maximize on Play button to test your game
in full-screen mode.
The Hierarchy panel lists all of the Game Objects in your
Scene. Game Objects - cameras, lights, models, and
prefabs—are the things that make up your game.
They can be "tangible" things like the birds and the bridge in
the Island Demo. They can also include intangible things,
which only you as the game developer get to see and play
with, such as the cameras, the lights, and colliders, which are
special invisible shapes that tell the game engine when two
Game Objects are touching.
So, Game Objects can include touchy-feely "physical" objects
like birds and bridges, as well as behind-the-scenes
intangible things like lights, cameras, and actions (scripts).
Click on a Game Object in the Hierarchy panel, and then
hover your mouse over the Scene window. Press the F key on
your keyboard, and the Scene window will automatically pan
and zoom directly to that object. Alternatively, you can go to
Edit | Frame Selected, which can be more reliable than using
the keyboard shortcut. (I like to think of the F as standing for
Focus to help me remember what this shortcut does).
It lists all of the elements that you'll use to create Game
Objects in your project.
The Project panel contains many of the elements, or
ingredients, that go into making our Game Objects.
The Project panel displays the contents of a special folder
called Assets. Unity automatically creates the Assets folder
for you when you create a new project. If you drag a
compatible file, like a 3D model, a sound effect, or an image
into the Project panel, Unity copies it to the Assets folder
behind the scenes, and displays it in the Project panel.
Don't mess with the Assets folder!
Unity stores metadata about the folder, and by moving stuff
around or deleting things through your operating system,
you may break your project. If you need to make changes,
make them right inside Unity in the Project panel.
The Inspector is a context-sensitive panel, which means that
it changes depending on what you select elsewhere in Unity.
This is where you can adjust the position, rotation, and scale
of Game Objects listed in the Hierarchy panel.
The Inspector can also display controls to configure
components that add functionality to Game Objects.
Between the three main panels in Unity (Hierarchy, Project,
and Inspector), the Inspector is where you'll likely spend
most of your time because that's where you'll be tweaking
and fiddling with every aspect of the elements that comprise
your game projects.
ibjects.comScripting
• Unity implements a MONO compiler
• Scripts can be written in
JavaScript
Note – most introductory tutorials are written in Javascript – for those learning
programming its fine
C#
Very similar to Java, Unity can be integrated with the Microsoft Visual Studio editor, to
get full benefits of code completion, source version control etc.
Serious developers work in C#
• In Unity, select from the menu Assets->Sync VisualStudio Project
• Find the newly created .sln file in your Unity project (one folder up from your Assets folder)
• Open that file with Visual Studio Express.
• In Unity, go to Edit->Preferences, and make sure that Visual Studio is selected as your preferred
external editor.
• Doubleclick a C# file in your project. Visual Studio should automatically open that file for you.
• You can edit the file, save, and switch back to Unity.
• You can now edit all your script files, and switch back to Unity to use them.
ibjects.comGame Objects & Prefabs
• Everything in a scene is either a Game Object or a component inside a Game Object
• Every Game Object has at least 1 COMPONENT
Its TRANSFORM – an object’s position, scale, rotation
Other components depend on object type (audio, mesh, material, script etc.)
• Game objects can be in a HIERARHCY – so an object can be a sub-object of another object
E.g. an “arm” object can be a sub-object of a “body” object etc.
Since object-oriented (although this is partially hidden when scripting in JavaScript)
instances can be INSTANTIATED at run time.
Unity uses the term PREFAB for a pre-fabricated object template (i.e. a class combining 3D
objects and scripts)
At DESIGN TIME (in editor) a prefab can be dragged from Project window into the Scene
window and added the scene’s hierarchy of game objects. The object can then be edited
(i.e. customised from the prefab default settings) if desired
At RUN TIME a script can cause a new object instance to be created (instantiated) at a given
location / with a given transform set of properties
ibjects.comAsset
Unity will automatically detect files as they are added to your Project folder's Assets folder.
When you put any asset into your Assets folder, you will see the asset appear in your
Project View.
• Asset Store
Unity's Asset Store is home to a growing library of free and commercial assets created both by
Unity Technologies and also members of the community.
A wide variety of assets is available, covering everything from textures, models and
animations to whole project examples, tutorials and Editor extensions. The assets are accessed
from a simple interface built into the Unity Editor and are downloaded and imported directly
into your project.
You can open the Asset Store window by selecting Window->AssetStore from the
main menu. On your first visit, you will be prompted to create a free user account which you
will use to access the Store subsequently.
• Location of Downloaded Asset Files
You will rarely, if ever, need to access the files downloaded from the Asset Store directly.
However, if you do need to, you can find them in
~/Library/Unity/Asset Store ...on the Mac and in
C:UsersaccountNameAppDataRoamingUnityAsset Store ...on Windows. These folders
contain subfolders that correspond to particular Asset Store vendors - the actual asset files are
contained in the appropriate subfolder
ibjects.comBuild
From the menu bar select File -> Build Settings
Select Scenes to Build
Select Platform
Click Build And Run
Cursos y Tutoriales Unity 2D
Tutorial Unity 2D en español
https://www.youtube.com/watch?v=mgtQe33XBjI
Introducción - Aprende a crear videojuegos
https://goo.gl/ayLjA8
Interacción con el Mundo Real
Controlling Unity Game with Buttons (Arduino Leonardo)
http://www.juanjoegusquiza.com/controlling-unity-
game-with-buttons-arduino-leonardo/
Basics Arduino Unity
https://www.youtube.com/watch?v=of_oLAvWfSI
Arduino + Unity 3D Tutorial:-03(controlling a cube using
using Arduino +MPU6050)
https://www.youtube.com/watch?v=7JQOxeWoDMM
DIY game controller based on Arduino with Unity3d
game
https://www.youtube.com/watch?v=e36VBc6vkpY
Referencias
Página Oficial Unity
https://unity3d.com/es/unity/editor
Requerimientos del sistema Unity
https://unity3d.com/es/unity/system-
requirements
Game Art 2D - Royalty Free 2D Game Assets
(para descargar sprites)
www.gameart2d.com
Ing.LauraMilenaParraNavarro,Mag.
Contacto
lparra.udi@gmail.com
https://sites.google.com/site/inglauraparradocenciaudi/

Mais conteúdo relacionado

Mais procurados

Unity 3D
Unity 3DUnity 3D
Unity 3Dgema123
 
Unity Game Engine - Basics
Unity Game Engine - BasicsUnity Game Engine - Basics
Unity Game Engine - BasicsFirosK2
 
Unreal Engine 4 Introduction
Unreal Engine 4 IntroductionUnreal Engine 4 Introduction
Unreal Engine 4 IntroductionSperasoft
 
Unreal Open Day 2017 UE4 for Mobile: The Future of High Quality Mobile Games
Unreal Open Day 2017 UE4 for Mobile: The Future of High Quality Mobile GamesUnreal Open Day 2017 UE4 for Mobile: The Future of High Quality Mobile Games
Unreal Open Day 2017 UE4 for Mobile: The Future of High Quality Mobile GamesEpic Games China
 
Unity Introduction
Unity IntroductionUnity Introduction
Unity IntroductionJuwal Bose
 
Forts and Fights Scaling Performance on Unreal Engine*
Forts and Fights Scaling Performance on Unreal Engine*Forts and Fights Scaling Performance on Unreal Engine*
Forts and Fights Scaling Performance on Unreal Engine*Intel® Software
 
Unreal Engine Beginner Workshop Slides
Unreal Engine Beginner Workshop SlidesUnreal Engine Beginner Workshop Slides
Unreal Engine Beginner Workshop SlidesMerlin Cheng
 
Abalanche - Unity Shader Graph #1: Shader & PBR Materials
Abalanche - Unity Shader Graph #1: Shader & PBR MaterialsAbalanche - Unity Shader Graph #1: Shader & PBR Materials
Abalanche - Unity Shader Graph #1: Shader & PBR MaterialsPhuong Hoang Vu
 
Creación de videojuegos con unity
Creación de videojuegos con unityCreación de videojuegos con unity
Creación de videojuegos con unityExequiel Blanco
 
Game Development with Unity
Game Development with UnityGame Development with Unity
Game Development with Unitydavidluzgouveia
 
Game genres
Game genresGame genres
Game genresaealey
 
Unreal Engine (For Creating Games) Presentation
Unreal Engine (For Creating Games) PresentationUnreal Engine (For Creating Games) Presentation
Unreal Engine (For Creating Games) PresentationNitin Sharma
 
Unity Internals: Memory and Performance
Unity Internals: Memory and PerformanceUnity Internals: Memory and Performance
Unity Internals: Memory and PerformanceDevGAMM Conference
 
윈도우 매니저 스터디: 0.윈도우 매니저 소개
윈도우 매니저 스터디: 0.윈도우 매니저 소개윈도우 매니저 스터디: 0.윈도우 매니저 소개
윈도우 매니저 스터디: 0.윈도우 매니저 소개nemoux
 
Introduction to Game Development
Introduction to Game DevelopmentIntroduction to Game Development
Introduction to Game DevelopmentiTawy Community
 
Game engines and Their Influence in Game Design
Game engines and Their Influence in Game DesignGame engines and Their Influence in Game Design
Game engines and Their Influence in Game DesignPrashant Warrier
 
Design your 3d game engine
Design your 3d game engineDesign your 3d game engine
Design your 3d game engineDaosheng Mu
 

Mais procurados (20)

Unity 3D, A game engine
Unity 3D, A game engineUnity 3D, A game engine
Unity 3D, A game engine
 
Unity 3D
Unity 3DUnity 3D
Unity 3D
 
Unity Game Engine - Basics
Unity Game Engine - BasicsUnity Game Engine - Basics
Unity Game Engine - Basics
 
Unity - Game Engine
Unity - Game EngineUnity - Game Engine
Unity - Game Engine
 
Unity
UnityUnity
Unity
 
Unreal Engine 4 Introduction
Unreal Engine 4 IntroductionUnreal Engine 4 Introduction
Unreal Engine 4 Introduction
 
Unreal Open Day 2017 UE4 for Mobile: The Future of High Quality Mobile Games
Unreal Open Day 2017 UE4 for Mobile: The Future of High Quality Mobile GamesUnreal Open Day 2017 UE4 for Mobile: The Future of High Quality Mobile Games
Unreal Open Day 2017 UE4 for Mobile: The Future of High Quality Mobile Games
 
Unity Introduction
Unity IntroductionUnity Introduction
Unity Introduction
 
Forts and Fights Scaling Performance on Unreal Engine*
Forts and Fights Scaling Performance on Unreal Engine*Forts and Fights Scaling Performance on Unreal Engine*
Forts and Fights Scaling Performance on Unreal Engine*
 
Unreal Engine Beginner Workshop Slides
Unreal Engine Beginner Workshop SlidesUnreal Engine Beginner Workshop Slides
Unreal Engine Beginner Workshop Slides
 
Abalanche - Unity Shader Graph #1: Shader & PBR Materials
Abalanche - Unity Shader Graph #1: Shader & PBR MaterialsAbalanche - Unity Shader Graph #1: Shader & PBR Materials
Abalanche - Unity Shader Graph #1: Shader & PBR Materials
 
Creación de videojuegos con unity
Creación de videojuegos con unityCreación de videojuegos con unity
Creación de videojuegos con unity
 
Game Development with Unity
Game Development with UnityGame Development with Unity
Game Development with Unity
 
Game genres
Game genresGame genres
Game genres
 
Unreal Engine (For Creating Games) Presentation
Unreal Engine (For Creating Games) PresentationUnreal Engine (For Creating Games) Presentation
Unreal Engine (For Creating Games) Presentation
 
Unity Internals: Memory and Performance
Unity Internals: Memory and PerformanceUnity Internals: Memory and Performance
Unity Internals: Memory and Performance
 
윈도우 매니저 스터디: 0.윈도우 매니저 소개
윈도우 매니저 스터디: 0.윈도우 매니저 소개윈도우 매니저 스터디: 0.윈도우 매니저 소개
윈도우 매니저 스터디: 0.윈도우 매니저 소개
 
Introduction to Game Development
Introduction to Game DevelopmentIntroduction to Game Development
Introduction to Game Development
 
Game engines and Their Influence in Game Design
Game engines and Their Influence in Game DesignGame engines and Their Influence in Game Design
Game engines and Their Influence in Game Design
 
Design your 3d game engine
Design your 3d game engineDesign your 3d game engine
Design your 3d game engine
 

Semelhante a Presentación Unity

Cmd unity withc
Cmd unity withcCmd unity withc
Cmd unity withcumairnoora
 
unity gaming programing basics for students ppt
unity gaming programing basics for students pptunity gaming programing basics for students ppt
unity gaming programing basics for students pptKathiriyaParthiv
 
DSC RNGPIT - Getting Started with Game Development Day 1
DSC RNGPIT - Getting Started with Game Development Day 1DSC RNGPIT - Getting Started with Game Development Day 1
DSC RNGPIT - Getting Started with Game Development Day 1DeepMevada1
 
Introduction to Game Programming: Using C# and Unity 3D - Chapter 3 (Preview)
Introduction to Game Programming: Using C# and Unity 3D - Chapter 3 (Preview)Introduction to Game Programming: Using C# and Unity 3D - Chapter 3 (Preview)
Introduction to Game Programming: Using C# and Unity 3D - Chapter 3 (Preview)noorcon
 
Galactic Wars XNA Game
Galactic Wars XNA GameGalactic Wars XNA Game
Galactic Wars XNA GameSohil Gupta
 
Introduction to Game Programming: Using C# and Unity 3D - Chapter 2 (Preview)
Introduction to Game Programming: Using C# and Unity 3D - Chapter 2 (Preview)Introduction to Game Programming: Using C# and Unity 3D - Chapter 2 (Preview)
Introduction to Game Programming: Using C# and Unity 3D - Chapter 2 (Preview)noorcon
 
Chapt 6 game testing and publishing
Chapt 6   game testing and publishingChapt 6   game testing and publishing
Chapt 6 game testing and publishingMuhd Basheer
 
Project Report Tron Legacy
Project Report Tron LegacyProject Report Tron Legacy
Project Report Tron LegacyManpreet Singh
 
Android Game Minisyonize
Android Game MinisyonizeAndroid Game Minisyonize
Android Game Minisyonizesavvy
 
Introduction to html5 game programming with impact js
Introduction to html5 game programming with impact jsIntroduction to html5 game programming with impact js
Introduction to html5 game programming with impact jsLuca Galli
 
Chapt 1 (part 2) installing the sdk and exploring the workspace
Chapt 1 (part 2)   installing the sdk and exploring the workspaceChapt 1 (part 2)   installing the sdk and exploring the workspace
Chapt 1 (part 2) installing the sdk and exploring the workspaceMuhd Basheer
 
course1-Intrduction-to-the-game-industry.pdf
course1-Intrduction-to-the-game-industry.pdfcourse1-Intrduction-to-the-game-industry.pdf
course1-Intrduction-to-the-game-industry.pdfBoubakerMedanas
 
Game Programming I - Introduction
Game Programming I - IntroductionGame Programming I - Introduction
Game Programming I - IntroductionFrancis Seriña
 
Lecture 1 Introduction to VR Programming
Lecture 1 Introduction to VR ProgrammingLecture 1 Introduction to VR Programming
Lecture 1 Introduction to VR ProgrammingKobkrit Viriyayudhakorn
 
Porting unity games to windows - London Unity User Group
Porting unity games to windows - London Unity User GroupPorting unity games to windows - London Unity User Group
Porting unity games to windows - London Unity User GroupLee Stott
 

Semelhante a Presentación Unity (20)

Cmd unity withc
Cmd unity withcCmd unity withc
Cmd unity withc
 
unity gaming programing basics for students ppt
unity gaming programing basics for students pptunity gaming programing basics for students ppt
unity gaming programing basics for students ppt
 
DSC RNGPIT - Getting Started with Game Development Day 1
DSC RNGPIT - Getting Started with Game Development Day 1DSC RNGPIT - Getting Started with Game Development Day 1
DSC RNGPIT - Getting Started with Game Development Day 1
 
Introduction to Game Programming: Using C# and Unity 3D - Chapter 3 (Preview)
Introduction to Game Programming: Using C# and Unity 3D - Chapter 3 (Preview)Introduction to Game Programming: Using C# and Unity 3D - Chapter 3 (Preview)
Introduction to Game Programming: Using C# and Unity 3D - Chapter 3 (Preview)
 
Galactic Wars XNA Game
Galactic Wars XNA GameGalactic Wars XNA Game
Galactic Wars XNA Game
 
Introduction to Game Programming: Using C# and Unity 3D - Chapter 2 (Preview)
Introduction to Game Programming: Using C# and Unity 3D - Chapter 2 (Preview)Introduction to Game Programming: Using C# and Unity 3D - Chapter 2 (Preview)
Introduction to Game Programming: Using C# and Unity 3D - Chapter 2 (Preview)
 
Unity 3 d
Unity 3 dUnity 3 d
Unity 3 d
 
Chapt 6 game testing and publishing
Chapt 6   game testing and publishingChapt 6   game testing and publishing
Chapt 6 game testing and publishing
 
Unity tutorial
Unity tutorialUnity tutorial
Unity tutorial
 
Project Report Tron Legacy
Project Report Tron LegacyProject Report Tron Legacy
Project Report Tron Legacy
 
Android Game Minisyonize
Android Game MinisyonizeAndroid Game Minisyonize
Android Game Minisyonize
 
Introduction to html5 game programming with impact js
Introduction to html5 game programming with impact jsIntroduction to html5 game programming with impact js
Introduction to html5 game programming with impact js
 
Chapt 1 (part 2) installing the sdk and exploring the workspace
Chapt 1 (part 2)   installing the sdk and exploring the workspaceChapt 1 (part 2)   installing the sdk and exploring the workspace
Chapt 1 (part 2) installing the sdk and exploring the workspace
 
course1-Intrduction-to-the-game-industry.pdf
course1-Intrduction-to-the-game-industry.pdfcourse1-Intrduction-to-the-game-industry.pdf
course1-Intrduction-to-the-game-industry.pdf
 
Game Programming I - Introduction
Game Programming I - IntroductionGame Programming I - Introduction
Game Programming I - Introduction
 
Lecture 1 Introduction to VR Programming
Lecture 1 Introduction to VR ProgrammingLecture 1 Introduction to VR Programming
Lecture 1 Introduction to VR Programming
 
HTML5 Game Development frameworks overview
HTML5 Game Development frameworks overviewHTML5 Game Development frameworks overview
HTML5 Game Development frameworks overview
 
UNITY 3D.pptx
UNITY 3D.pptxUNITY 3D.pptx
UNITY 3D.pptx
 
Porting unity games to windows - London Unity User Group
Porting unity games to windows - London Unity User GroupPorting unity games to windows - London Unity User Group
Porting unity games to windows - London Unity User Group
 
Unity 3 d
Unity 3 dUnity 3 d
Unity 3 d
 

Mais de Laura Milena Parra Navarro (12)

III Encuentro Ciencias Básicas
III Encuentro Ciencias BásicasIII Encuentro Ciencias Básicas
III Encuentro Ciencias Básicas
 
Laboratorio Medición de Resistencias
Laboratorio Medición de ResistenciasLaboratorio Medición de Resistencias
Laboratorio Medición de Resistencias
 
Condensadores en Serie
Condensadores en SerieCondensadores en Serie
Condensadores en Serie
 
Condensadores en Paralelo
Condensadores en ParaleloCondensadores en Paralelo
Condensadores en Paralelo
 
Capitulo 28 - Circuitos Corriente Directa
Capitulo 28 - Circuitos Corriente DirectaCapitulo 28 - Circuitos Corriente Directa
Capitulo 28 - Circuitos Corriente Directa
 
Capitulo 27 - Corriente y Resistencia
Capitulo 27 - Corriente y ResistenciaCapitulo 27 - Corriente y Resistencia
Capitulo 27 - Corriente y Resistencia
 
Capitulo 26 - Capacitancia
Capitulo 26 - CapacitanciaCapitulo 26 - Capacitancia
Capitulo 26 - Capacitancia
 
Herramientas de Simulación
Herramientas de SimulaciónHerramientas de Simulación
Herramientas de Simulación
 
Resumen Formulas Fisica 2 - 2do corte
Resumen Formulas Fisica 2 -  2do corteResumen Formulas Fisica 2 -  2do corte
Resumen Formulas Fisica 2 - 2do corte
 
Taller Uso Calculadora
Taller Uso CalculadoraTaller Uso Calculadora
Taller Uso Calculadora
 
Taller Uso de la Calculadora
Taller Uso de la CalculadoraTaller Uso de la Calculadora
Taller Uso de la Calculadora
 
Usos, instrucciones y funciones de mendeley
Usos, instrucciones y funciones de mendeleyUsos, instrucciones y funciones de mendeley
Usos, instrucciones y funciones de mendeley
 

Último

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIFood Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIShubhangi Sonawane
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 

Último (20)

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIFood Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

Presentación Unity

  • 2. Ing. Laura Milena Parra Navarro, Mg. Universitaria de Investigación y Desarrollo 8 de Abril 2017 Introducción a Unity Motor de Desarrollo
  • 3. Unity is a multi-platform, integrated IDE for scripting games, and working with 3D virtual worlds. • Game engine 3D objects / lighting / physics / animation / scripting • Accompanying script editor MonoDevelop (win/mac) Can also use Visual Studio (Windows) • 3D terrain editor • 3D object animation manager • GUI system • Executable exporter many platforms: Native application / web player / iPhone / Android / Wii
  • 5. Unity puede usarse junto con 3ds Max, Maya, Softimage, Blender, Modo, ZBrush, Cinema 4D, Cheetah3D, Adobe Photoshop, Adobe Fireworks y Allegorithmic Substance. Los cambios realizados a los objetos creados con estos productos se actualizan automáticamente en todas las instancias de ese objeto durante todo el proyecto sin necesidad de volver a importar manualmente.
  • 6. A screen shot of the game created using Unity 3D Engine for PC. As you can see in the screen shot that the graphics are realistic. See how the shadow of tree is accordingly to the sun light and the rest of graphics are also giving it a realistic view. You also play these type of games now a days in your PC’s. Ever wonder how they are created? Well now you can do it using Unity Engine.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.  Materials son definiciones acerca de cómo la superficie debería ser renderizada, incluyendo referencias a texturas utilizadas, información del tiling (suelo de baldosas), tines de color y más. Las opciones disponibles para un material depende en qué shader del materia está utilizando.  Shaders son scripts pequeños que contienen los cálculos de matemáticas y algoritmos para calcular el color de cada pixel renderizado, basándose en el input de iluminación y la configuración del Material.  Textures son imágenes bitmap. Un material contiene referencias a texturas, para que el shader del Material puede utilizar las texturas mientras calcula el color de la superficie de un objeto. Adicionalmente a el color básico (albedo) de la superficie de un objeto, las texturas pueden representar otros aspectos de la superficie de un material tal como su reflectividad o rugosidad.
  • 12.
  • 13.
  • 14. ibjects.com System Requirements Windows: XP SP2 or later; Mac OS X: Intel CPU & "Snow Leopard" 10.6 or later. Note that Unity was not tested on server versions of Windows and OS X. Graphics card with DirectX 9 level (shader model 2.0) capabilities. Any card made since 2004 should work. Using Occlusion Culling requires GPU (Graphics Processing Unit) with Occlusion Query support (some Intel GPUs do not support that). Installation Installing Unity 3D is simple. • Download the latest Unity distribution from http://unity3d.com/unity/download/ • Run the installer with default settings. • Run Unity for the first time. It may open the demo project, or it will ask you to create a project. Open the demo or create a new project without changing any settings. • Follow the instructions to register online, fill out your email address and just use the free/indie license. • Go to File > Open Project • When your project will be loaded, it will open in unity. More on next slide Installing
  • 15.
  • 16.
  • 17. ibjects.com The extension of a unity file is .unity. You can make games on unity for different platforms that include Android and iOS. • This screen shot is showing the platforms on which you can export your .unity file. • So now you see the unity is a huge tool if you are interested in game development. • However, in these slides we will only cover Unity for PC games. • Unity is a freeware software. Bur it is now freeware if you want to use it for commercial purpose. (Selling your games in market) Introduction
  • 18.
  • 19.
  • 20.
  • 21.
  • 22. El scripting viene a través de Mono. El script se basa en Mono, la implementación de código abierto de .NET Framework. Los programadores pueden utilizar UnityScript (un lenguaje personalizado inspirado en la sintaxis ECMAScript), C# o Boo (que tiene una sintaxis inspirada en Python). A partir de la versión 3.0 añade una versión personalizada de MonoDevelop para la depuración de scripts. Programación de scripts
  • 23. La tecnología está diseñada para llevar el movimiento fluido y natural de los personajes con una interfaz eficiente. Mecanim incluye herramientas para la creación de máquinas de estados, árboles de mezcla, manipulación de los conocimientos nativos de animaciones, desde el editor de Unity.
  • 25. Es un recurso disponible en el editor de Unity. Más de 150.000 usuarios de Unity pueden acceder a la colección de más de 4.400 paquetes de Assets en una amplia gama de categorías, incluyendo modelos 3D, texturas y materiales, sistemas de partículas, música y efectos de sonido, tutoriales y proyectos, paquetes de scripts, extensiones para el editor y servicios en línea.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31. Diseño y Desarrollo de Videojuegos • Design and Development of Games for Learning • Digital Game-Based Learning
  • 32. Diseño y Desarrollo de Videojuegos
  • 33. Diseño y Desarrollo de Videojuegos
  • 34.
  • 35. Screen Shot of Unity Main Interface with a Project Opened
  • 36. 1 – Scene Scene is same as Hierarchy(2) = same, just diff. views Editable (design-time) 3D game objects in the current scene 2 – Hierarchy Text list of game objects and sub-objects in the current scene 3 – Inspector Properties for currently selected 4 – Game Preview how game will look when executing 5 – Project Contents of Project ‘assets’ folder (i.e. files in that folder) – library of scripts, digital media files, and scenes
  • 37. This is the top most bar below Menu Bar in Unity Main Interface Window. Click-drag to drag the camera around Hold Alt and click-drag to orbit the camera around the current pivot point. Hold Control and click-drag to zoom the camera. Above the Inspector panel, you'll see the Layers and Layout dropdowns. Game Objects can be grouped into layers, much like in Photoshop or Flash. Unity stores a few commonly used layouts in the Layout dropdown. You can also save and load your own custom layouts. These three buttons help you test your game and control playback. As you've seen, the Play button starts and stops your game. The Pause button works as expected—it pauses your game so that you can make changes to it on the fly. The third button is a Step-Through control; use it to advance frame-by-frame through your game so that you can more tightly control what's going on.
  • 38. The Scene window is where you can position your Game Objects and move things around. This window has various controls to change its level of detail. Use these controls to toggle lighing on and off, and to display the window contents with textures, wireframes, or a combination of both. You can use the colorful gizmo in the top-right corner to constrain the window to the X, Y, and Z axes to view the top and sides of your scene. Click on the white box in the middle to return to perspective view. This is what the Scene window looks like when you start a new project or create a new Scene. You can think of scenes as levels or stages in your game. A unity “scene” is essentially a “level” or “screen” Typical game Welcome / main menu screen Buttons: play game / see high scores / read instructions / change input settings Level 1 / Level complete / Level 2 etc… Game Over / Enter details for new High Score … All the above would be separate “scenes” in unity Some scenes may be entirely based around the Unity GUI scripts / components – i.e. be text / buttons on screen
  • 39. The Game window shows you what your players will see. When you click on the Play button to test your game (as you just did with the Island Demo), the results of your efforts play out in this window. Toggle the Maximize on Play button to test your game in full-screen mode.
  • 40. The Hierarchy panel lists all of the Game Objects in your Scene. Game Objects - cameras, lights, models, and prefabs—are the things that make up your game. They can be "tangible" things like the birds and the bridge in the Island Demo. They can also include intangible things, which only you as the game developer get to see and play with, such as the cameras, the lights, and colliders, which are special invisible shapes that tell the game engine when two Game Objects are touching. So, Game Objects can include touchy-feely "physical" objects like birds and bridges, as well as behind-the-scenes intangible things like lights, cameras, and actions (scripts). Click on a Game Object in the Hierarchy panel, and then hover your mouse over the Scene window. Press the F key on your keyboard, and the Scene window will automatically pan and zoom directly to that object. Alternatively, you can go to Edit | Frame Selected, which can be more reliable than using the keyboard shortcut. (I like to think of the F as standing for Focus to help me remember what this shortcut does).
  • 41. It lists all of the elements that you'll use to create Game Objects in your project. The Project panel contains many of the elements, or ingredients, that go into making our Game Objects. The Project panel displays the contents of a special folder called Assets. Unity automatically creates the Assets folder for you when you create a new project. If you drag a compatible file, like a 3D model, a sound effect, or an image into the Project panel, Unity copies it to the Assets folder behind the scenes, and displays it in the Project panel. Don't mess with the Assets folder! Unity stores metadata about the folder, and by moving stuff around or deleting things through your operating system, you may break your project. If you need to make changes, make them right inside Unity in the Project panel.
  • 42. The Inspector is a context-sensitive panel, which means that it changes depending on what you select elsewhere in Unity. This is where you can adjust the position, rotation, and scale of Game Objects listed in the Hierarchy panel. The Inspector can also display controls to configure components that add functionality to Game Objects. Between the three main panels in Unity (Hierarchy, Project, and Inspector), the Inspector is where you'll likely spend most of your time because that's where you'll be tweaking and fiddling with every aspect of the elements that comprise your game projects.
  • 43. ibjects.comScripting • Unity implements a MONO compiler • Scripts can be written in JavaScript Note – most introductory tutorials are written in Javascript – for those learning programming its fine C# Very similar to Java, Unity can be integrated with the Microsoft Visual Studio editor, to get full benefits of code completion, source version control etc. Serious developers work in C# • In Unity, select from the menu Assets->Sync VisualStudio Project • Find the newly created .sln file in your Unity project (one folder up from your Assets folder) • Open that file with Visual Studio Express. • In Unity, go to Edit->Preferences, and make sure that Visual Studio is selected as your preferred external editor. • Doubleclick a C# file in your project. Visual Studio should automatically open that file for you. • You can edit the file, save, and switch back to Unity. • You can now edit all your script files, and switch back to Unity to use them.
  • 44. ibjects.comGame Objects & Prefabs • Everything in a scene is either a Game Object or a component inside a Game Object • Every Game Object has at least 1 COMPONENT Its TRANSFORM – an object’s position, scale, rotation Other components depend on object type (audio, mesh, material, script etc.) • Game objects can be in a HIERARHCY – so an object can be a sub-object of another object E.g. an “arm” object can be a sub-object of a “body” object etc. Since object-oriented (although this is partially hidden when scripting in JavaScript) instances can be INSTANTIATED at run time. Unity uses the term PREFAB for a pre-fabricated object template (i.e. a class combining 3D objects and scripts) At DESIGN TIME (in editor) a prefab can be dragged from Project window into the Scene window and added the scene’s hierarchy of game objects. The object can then be edited (i.e. customised from the prefab default settings) if desired At RUN TIME a script can cause a new object instance to be created (instantiated) at a given location / with a given transform set of properties
  • 45. ibjects.comAsset Unity will automatically detect files as they are added to your Project folder's Assets folder. When you put any asset into your Assets folder, you will see the asset appear in your Project View. • Asset Store Unity's Asset Store is home to a growing library of free and commercial assets created both by Unity Technologies and also members of the community. A wide variety of assets is available, covering everything from textures, models and animations to whole project examples, tutorials and Editor extensions. The assets are accessed from a simple interface built into the Unity Editor and are downloaded and imported directly into your project. You can open the Asset Store window by selecting Window->AssetStore from the main menu. On your first visit, you will be prompted to create a free user account which you will use to access the Store subsequently. • Location of Downloaded Asset Files You will rarely, if ever, need to access the files downloaded from the Asset Store directly. However, if you do need to, you can find them in ~/Library/Unity/Asset Store ...on the Mac and in C:UsersaccountNameAppDataRoamingUnityAsset Store ...on Windows. These folders contain subfolders that correspond to particular Asset Store vendors - the actual asset files are contained in the appropriate subfolder
  • 46. ibjects.comBuild From the menu bar select File -> Build Settings Select Scenes to Build Select Platform Click Build And Run
  • 47. Cursos y Tutoriales Unity 2D Tutorial Unity 2D en español https://www.youtube.com/watch?v=mgtQe33XBjI Introducción - Aprende a crear videojuegos https://goo.gl/ayLjA8
  • 48. Interacción con el Mundo Real Controlling Unity Game with Buttons (Arduino Leonardo) http://www.juanjoegusquiza.com/controlling-unity- game-with-buttons-arduino-leonardo/ Basics Arduino Unity https://www.youtube.com/watch?v=of_oLAvWfSI Arduino + Unity 3D Tutorial:-03(controlling a cube using using Arduino +MPU6050) https://www.youtube.com/watch?v=7JQOxeWoDMM DIY game controller based on Arduino with Unity3d game https://www.youtube.com/watch?v=e36VBc6vkpY
  • 49. Referencias Página Oficial Unity https://unity3d.com/es/unity/editor Requerimientos del sistema Unity https://unity3d.com/es/unity/system- requirements Game Art 2D - Royalty Free 2D Game Assets (para descargar sprites) www.gameart2d.com