Unity & Perforce Prerequisite Knowledge: - Perforce log in/Creating a workspace - Creating a Unity project Topics Covered: - Project Set Up - First Commit.

Slides:



Advertisements
Similar presentations
Intro to Version Control Have you ever …? Had an application crash and lose ALL of your work Made changes to a file for the worse and wished you could.
Advertisements

An Introduction to Using
Garfield Graphics included with kind permission from PAWS Inc. All Rights Reserved. Making a PowerPoint Presentation 02 Adding Sound.
FINAL CUT PRO VIDEO EDITING SUITE REVIEW. FINAL CUT PRO REVIEW GETTING STARTED: Start by clicking the Final Cut Pro (FCP) icon in your dock. Wait for.
© 2014 Blackboard Inc. All rights reserved.. Learn about the different types of content you can add to your course. Add items and tools to content areas.
Web publishing training Introduction to the Tera text Web Content Management System (CMS) Learning Objective: Basic knowledge and skills required to publish.
How to Submit an Assignment after the Due Date. Click on “Courses” Tab.
Course Orientation Discussion and Private Messages Tool.
Course Orientation Assignments Tool. If the Assignments tool has been added to the course, use the Assignments link in the Course Menu to access upcoming.
1 Copyright © 2014 Tata Consultancy Services Limited Source Code Management using Rational Team Concert IBM Rational, Alliance & Technology Unit 2 July.
Google Confidential and Proprietary 1 Intro to Docs Google Apps Apps.
Working with SharePoint Document Libraries. What are document libraries? Document libraries are collections of files that you can share with team members.
Perforce (Version Control Software). Perforce is an enterprise version management system in which users connect to a shared file repository. Perforce.
Getting Started and Creating a PD Plan in Schoolnet 1.
Informational Writing - Session One –Organizing for the Journey Ahead
There are lots of wikis out there… But I like…. A how-to for the classroom.
Prepared by: Steve Teo Contributors: Tong Huu Khiem.
Setting Up DreamWeaver NOTE: Use your mouse OR page down key to advance each page.
Sharepoint Getting started. Please log on to the Adult and Family Education website: adulted.d11.org Then go to AFE Teaching Staff and click on Valerie.
Fall 2005 Using FrontPage to Enhance Blackboard - Darek Sady1 Using FrontPage to Enhance Blackboard 1.Introduction 2.Starting FrontPage 3.Creating Documents.
Patrick Bailey, MS IDIS110 Dreamweaver Setup. IDIS110 - RIT After you start Dreamweaver On the first time, if you are asked, select “Design Mode” Otherwise,
Adding Documents to OnCourse. Add a Document Look for the Documents tab and click it.
Basic Instructions on how to use One Drive and share files. ONE Drive Your LogoYour own footer.
CSC350: Learning Management Systems COMSATS Institute of Information Technology (Virtual Campus)
Wiki Workshop Tech PD.
Team 708 – Hardwired Fusion Created by Nam Tran 2014.
Diagnostic Pathfinder for Instructors. Diagnostic Pathfinder Local File vs. Database Normal operations Expert operations Admin operations.
Website Editing From Gingerweb The Image Gallery.
May 7, We manage documents and their changes with versioning and check out/check in procedures.
Submitting and Assignment Click on the assignment link in your course The folder with the paper sticking out of the top is the symbol for an assignment.
Import pictures I usually save them to my desktop Click here to browse files on your computer or images from the web.
UDL Book Builder for Teachers Image sources: Cast UDL.
A Simple Introduction to Git: a distributed version-control system CS 5010 Program Design Paradigms “Bootcamp” Lesson 0.5 © Mitchell Wand, This.
Photo Story Creating your own!. What is Photo Story? Photo Story is a way to create slideshows with added narration, effects, transitions and background.
Go to your Blog URL: Then click on “Log in” Your students do not need to remember their password, they can select.
January 2006Colby College ITS Setting Up Course Pages.
Photo Story 3 for Windows Find Photo Story 3 for Windows in “All Programs” in the Start menu. Click “Begin a new story” if you are just starting. Click.
Click Author. Log into the system. Click on the title of the manuscript to make changes Your manuscript is being edited.
If you don’t have Google Earth downloaded already, you can go to to get it.
Hstry.co Interactive Timelines. Sign Up for Hstry.co Easy as 1, 2, 3! Log in to Hstry.co and sign up as a teacher. You can sign up using your Google Account.
AMCA Training Contents Module selection Navigation Assignments (Online) Assignments (Upload a file) Forums (online discussions) Wikis Reveals Watching.
Find a Lawyer Launch Guide How to make the most of this powerful new member benefit.
My Stuff & More! How to personalize your OSLIS 2.0 “dashboard” and add files to your personal space.
eIRB Training IRB Committee Members
How to get started with RefWorks
Contributing to the WCARC Website
Student Registration/ Personal Needs Profile
How to access your work from home or another computer
Eclipse Navigation & Usage.
How to Build a Plan.
How to get started with RefWorks
Click on the assignment you wish to complete
Collaboration with Google Docs
An Introduction to Using
UNITY TEAM PROJECT TOPICS: [1]. Unity Collaborate
How to Create a Template in Microsoft Word
Setting up an Eclipse project from a repository on GitHub
How to Add to an Existing Document
EGit in CCS
Webropol Getting started- 1
Convert an Eclipse Project to a Git repository and push up to GitHub
References & Recommendations
Your site should be here
Student Registration/ Personal Needs Profile
Scripts In Matlab.
YOUR text YOUR text YOUR text YOUR text
Student Registration/ Personal Needs Profile
1. GitHub.
References & Recommendations
Presentation transcript:

Unity & Perforce Prerequisite Knowledge: - Perforce log in/Creating a workspace - Creating a Unity project Topics Covered: - Project Set Up - First Commit - Checking In/Out

Project Setup You need to enable Meta Files in Unity so Perforce can track the relationship between your GameObjects and Assets: 1) Open the Editor Settings in the Inspector: - Edit > Project Settings > Editor 2) In the Inspector: - Change the Mode tab under Version Control to Meta Files

First Commit First up, let's refresh on Perforce stuff: - Depot: The repository online where saved files are stored - Workspace: The place on your computer where your files are stored - Pending: A list of all your pending changes; you should revert/submit here - History: A list of changes made to selected files - Log: A text version of everything perforce is doing behind the scenes

First Commit 1) Put your Unity project into the folders your workspace looks at: - Right Click the top folder in your workspace > Show In > Show In Explorer - Copy/Paste Project - Right Click the top folder in your workspace > Refresh 2) Mark for Add ONLY the Assets and Project Settings folders of your project (this prepares them for submission to the Depot): - Right Click the Assets folder > Mark for Add - Right Click the Project Settings folder > Mark for Add 3) Submit your Project: - In the Pending tab: Right Click the red triangle (changelist) > Submit

Check In/Out 1) Check whichever files you'll be changing (It's best practice to check the files out before you edit them, but it's not required). - Right Click folders/files > Check Out 2) When ready to commit your changes, be sure to Mark for Add any assets you've added to the project (I usually Mark for Add the whole Assets and Project Settings folders): - Right Click folders/files > Mark for Add 3) When you're ready to submit, make sure you Revert Unchanged files before doing so (this keeps Perforce from uploading data that's already in the Depot): - Right Click your changelist in the pending tab > Revert Unchanged Files - Right Click your changelist > Submit