notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

Unity.md (1000B)


      1 # Unity 
      2 
      3 Unity is a popular game engine, no duh. 
      4 
      5 ### General Stuff
      6 
      7 **Unity Hub:** Used to manage projects and create projects. This can also be used to select IDE versions
      8 
      9 **Aggregation:** Unity uses aggregation by grouping assets together (nesting)
     10 
     11 ### Important Conceptual Ideas
     12 
     13 - [Texture](Texture.md)
     14 - [Texture Maps](TextureMaps.md)
     15 - [Baking](Baking.md)
     16 - [Surface Representation](SurfaceRepresentation.md)
     17 - [Mesh](Mesh.md)
     18 - [Transform](Transform.md)
     19 - [Quaternions](Quaternions.md)
     20 
     21 ### Components
     22 
     23 - [Mesh Filter](MeshFilter.md)
     24 - [Mesh Renderer](MeshRenderer.md)
     25 - [Script](Script.md)
     26 - [Animation](Animation.md)
     27 - [Animation Controller](AnimationController.md)
     28 
     29 ### Other Unity Specifics
     30 
     31 - [Asset](Asset.md)
     32 - [Game Object](GameObject.md)
     33 - [Mono Behaviour](MonoBehaviour.md)
     34 - [Lighting](Lighting.md)
     35 - [Game Loop](GameLoop.md)
     36 - [Vector3](Vector3.md)
     37 - [Input](Input.md)
     38 - [Movement](Movement.md)
     39 - [Translate](Translate.md)
     40 - [Rotate](Rotate.md)
     41 - [Local Scale](LocalScale.md)