Getting Started - No Scripting

From __space Wiki
Revision as of 19:14, 27 April 2017 by Steph (talk | contribs)
Jump to: navigation, search

No Scripting *yet*

starting a new world

Make an account at https://unity3d.com/, Unity will probably ask you to sign in before you start doing anything with their application. Once you've done that and signed in, you can go to 'New' and see something like this:

UnityNewScene.png

You don't need to worry about Unity Analytics or Asset Packages yet, and this guide is for making 3d games with the Unity engine, so keep that option checked. Press 'Create project'.

You should now be looking at something like this:

UnityDefaultLayout.png


overview of editor and various tabs

There's a lot of UI here whose functionality may or may not seem obvious to you, so I will try to explain what each piece is for.


placing things in a scene

primitive 3d objects

2 ways to start to place primitive 3d shapes in a scene: Right-click in the Hierarchy tab (the other way is almost the same but starts with going to GameObject at the top of the screen instead of right-clicking),

PlaceCube.png

Two things happen: one, a cube is added to the lists of objects in the hierarchy tab, and two, you should now see a cube in the Scene tab/viewer:

CubeInHierarchy.png CubeInScene.png

and if the cube has an orange outline, as shown in my scene tab, there should also be some new information in the Inspector tab:

CubeInInspector.png


lights

  • spot light
  • point light
  • area light
  • directional light

models from your project assets

parent/ child hierarchy

how to test things out

play vs edit mode