Introduction to Unity 2D Game Development

Slides:



Advertisements
Similar presentations
Using CrossCheck in Editorial Manager® Prepared by: Adam Nicely.
Advertisements

Netscape Mail. Starting Out Launch Netscape From the menu bar select Edit - Preferences The next slides show the configuration for the mail preferences.
1 Web Site Design Overview of the Internet Cookie Setton.
August 2014 Liver quest User Demo: Liver Quality Enhancement Service Tool (QuEST)
Online Pattern Library User Manual. Outline Introduction Latest Released Browse by category Textile Detail Page Download Image Creative Inspirations My.
Created by Applications User Experience Team
HELLO WORLD: YOUR FIRST PROGRAM CHAPTER Topics  Hello World?  Creating a Unity Project –The Unity Project Folder  MonoDevelop: Unity's Code Editor.
With Alex Conger – President of Webmajik.com FrontPage 2002 Level I (Intro & Training) FrontPage 2002 Level I (Intro & Training)
Introduction to R Statistical Software Anthony (Tony) R. Olsen USEPA ORD NHEERL Western Ecology Division Corvallis, OR (541)
The basics of the Online Portal
Getting Started Setting a Theme Setting up Pages Making a Menu Adding Video to your Page Setting Up Your Contact Page Extra Website Content.
Scottish Legal Aid Board Content Management using OpenCms Martin Spinks CTO Navyblue Tuesday, March 16, 2010.
A guide for UICET for using Wikispaces.  A wiki is a web page or collection of web pages that can be linked together as a website.  Wikis are often.
SE 350 – Programming Games Lecture 6: Programming with Unity Lecturer: Gazihan Alankuş Please look at the last slide for assignments (marked with TODO)
Presented by Chad Kafka This Month’s Topic: Wikispaces Advanced Today’s session is an introduction to what a WIKI is and how they can be used in education.
In addition to Word, Excel, PowerPoint, and Access, Microsoft Office® 2013 includes additional applications, including Outlook, OneNote, and Office Web.
Windows Web Xbox Mobile … and WakeUpAndCode.com.
EEC-693/793 Applied Computer Vision with Depth Cameras Lecture 13 Wenbing Zhao
Intro to MFC. Open VS and create new project 1)Open MS Visual Studio 2008 Professional (It must be the Professional Edition, the Express Edition will.
WEBiT Adding a new page. 1. View a page like the one you wish to create a. Navigate to a page with a similar layout to the new page you wish to create.
Presenter- Deborah Coker  Advantages of having a site  Features you may want to have on your site  Menus, Tabs, and Ribbons  Creating.
SE 320 – Introduction to Game Development Lecture 8: Animations, GUIs, Debugging and IDEs Lecturer: Gazihan Alankuş Please look at the last two slides.
Point & Edit CMS An Introduction to Point & Edit.
How to Use ToonDoo Nicole Barnes – EDF 6447 / Rangeview Primary.
Web Games Programming Unity Scripting Fundamentals.
Unity 5 Visual Studio Code * Asset Store * FPS * Terrain.
Nissan FAST Installation
Mtivity Client Support System Quick start guide. Mtivity Client Support System We are very pleased to announce the launch of a new Client Support System.
Using Your Wiki Tutorial 1.Choosing Your Preferences 2.Pages and Files 3.Folders 4.Edit a Page 5.Review Recent Activity 6.Using the Sidebar 7.Uploading.
By: Gia Vuong Riyad Mahmud Narsimha Kalthy.  What is Mahara?  Logging into the ACS Portfolio  Using Mahara to Manage: ◦ Files ◦ Blogs ◦ External Feeds.
IFS Document Management
Using Middle Search® Plus For Junior Academic Bowl Competitions.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Expressive Intelligence Studio // Center for Games and Playable Media // Unity Pro John Murray Expressive.
AMCA Training Contents Module selection Navigation Assignments (Online) Assignments (Upload a file) Forums (online discussions) Wikis Reveals Watching.
Trapeze User Forum What’s new in version 9 What’s new in version 9 Document Viewing Document Viewing Organise your documents Organise your documents Bookmarking.
Solid Modeling SolidWorks Layout ENGR 1182 SolidWorks 01.
Digital Game Design ACST 3710 Your First Unity Program 1.
Installing RMS 3.0 Contractor Mode
EEC-693/793 Applied Computer Vision with Depth Cameras
Using the Personal Image Photo Library
Imaging and Design for Online Environment
Weebly Elements, Continued
New Box Web Experience Inventory of changes.
EEC-693/793 Applied Computer Vision with Depth Cameras
Brian McCallum UWS, Web Services Unit 15 November 2011
The Future of Online Storage
EEC-693/793 Applied Computer Vision with Depth Cameras
Collaboration with Google Docs
How to Update or Upgrade to macOS Mojave on Mac?.
ALEPH Version 22 Beginning Cataloging
The How to Guide to Using Google Drive
Tech Drop In: Google Drive
Ariba Contracts: Working with the Documents Tab
Admin Manual (version 1.0).
Once you log into ACRS using the link : account. interfolio
This presentation document has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational.
This presentation document has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational.
This presentation document has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational.
Motivis Instructor Training
This presentation document has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational.
Goto “\\ \utilities\Virus_Sfw\Patches”
EEC-693/793 Applied Computer Vision with Depth Cameras
Exchange of Information
The session website can be reached at wmo
More to Learn Creating a shortcut
BEGINNER PROGRAMMING LESSON
This presentation document has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational.
Free Presentation Template
Presentation transcript:

Introduction to Unity 2D Game Development Lecture based on Learning C# by Developing Games with Unity by Greg Lukosek

Downloading Unity The best place to download the latest version Unity website: https://unity3d.com/get-unity/download Individuals can download a free, fully-functional copy of Unity for personal use. To activate your copy of Unity you need to create your account and then respond to the verification email message you receive from Unity. We will be using the Unity Reference Manual for support with a topic. For detailed coding help and examples we will use the Scripting Reference.

Unity Documentation We will be using the Unity Reference Manual for support with a topic. For detailed coding help and examples we will use the Scripting Reference. Documentation available at http://docs.unity3d.com/ Docs also available thorugh Help menu on top bar as well as the help menu next to the component name.

https://docs.unity3d.com/ScriptReference/

How to Create a Script & Associate it with your Unity Project You can, In the menu, navigate to Assets | Create || C# Script, or In the Project tab, navigate to Create | C# Script, Right-click the Project tab, and from the pop-up menu, navigate to Create | C# Script.

A Little Housekeeping As our Unity project progresses, we will have lots of different types of files in the Project view. It's highly recommended that you keep a clean and simple folder structure in your project Let's keep scripts in the Scrip[ts folder, textures in Textures, and so on...

Unity IDE is Customizable When working in a team, you will notice that teams members have their own layout preferences.

Right-click the Project tab and create a folder named Scripts Right-click the Scripts folder and create a C# script. To edit a C# script, double-click its icon. This will launch Visual Studio IDE into the C# Text Editor.

using System.Collections; using System.Collections.Generic; using UnityEngine; public class myScript : MonoBehaviour { // Use this for initialization void Start () { } // Update is called once per frame void Update () transform.Rotate(10, 10, 10);