Home /3D Animation /Crash Course

3D Animation Course

Blender Crash Course

The Complete Workflow Reference

1. Interface Overview

Blender's interface is divided into editors — each area of the screen can be set to any editor type. Understanding which editor you need is the first skill to master.

3D Viewport

Where you see, select, and manipulate 3D objects. The main working area.

Properties Panel

Object settings, materials, modifiers, physics, and render settings.

Outliner

Scene hierarchy — lists every object, collection, and asset in your file.

Timeline / Dope Sheet

Animation keyframe management and playback controls.

Shader Editor

Node-based material and shader creation.

Graph Editor

Fine-tune animation curves and interpolation for smooth motion.

Tip

Hover over any area and press Ctrl Space to maximise it. Press again to restore the layout.

2. Navigation & Essential Shortcuts

Blender relies heavily on keyboard shortcuts and the middle mouse button. Learning these first saves enormous time.

ActionShortcutNote
Orbit viewMMB dragMiddle Mouse Button
Pan viewShift MMB
ZoomScrollOr pinch on trackpad
Numpad views1 3 7Front / Right / Top
Camera view0Numpad 0
Select objectLMBLeft click
Select all / noneAToggle all selection
Box selectBDrag to select region
DeleteXPrompts confirmation
Add objectShift AAdd menu
Toggle Edit ModeTabObject ↔ Edit
Search commandsF3Find any operator

No Numpad?

Enable Emulate Numpad in Preferences → Input to use the number row at the top of your keyboard for view shortcuts.

3. 3D Modeling

Blender uses a mesh-based modeling system. Every 3D object is made of vertices (points), edges (lines), and faces (polygons). In Edit Mode you manipulate these directly.

ActionShortcut
Select vertices / edges / faces1 / 2 / 3
ExtrudeE
Loop cutCtrl R
BevelCtrl B
Inset facesI
Merge verticesM
Knife toolK
Proportional editingO
Grab / MoveG then X Y Z to constrain axis
ScaleS
RotateR

Modifier Workflow

Use the Subdivision Surface modifier to add smoothness non-destructively. Apply the Mirror modifier to model only half of a symmetrical object. Modifiers appear in the Properties panel under the wrench icon.

4. Materials & Shaders

Materials control how a surface interacts with light. Blender uses a node-based shader system — the Principled BSDF node covers most real-world materials.

Principled BSDF Key Inputs

Base ColorSurface colour or texture
Metallic0 = non-metal, 1 = metal
Roughness0 = mirror, 1 = matte
TransmissionGlass / transparent
EmissionGlowing / light-emitting

Texture Workflow

  1. 1. UV Unwrap your mesh (U in Edit Mode)
  2. 2. Open Shader Editor
  3. 3. Add Image Texture node (Shift A)
  4. 4. Load your texture image
  5. 5. Connect Color output → Base Color

HDRI Tip

For realistic lighting, use an HDRI environment texture. Go to World Properties → Surface → Environment Texture and load a .hdr file from Poly Haven (free, CC0 licensed).

5. Rigging

Rigging creates a skeleton (armature) that deforms your mesh. This is how characters move in animations.

1

Add an Armature

Shift A → Armature. This adds a single bone. In Edit Mode, extrude bones to build the skeleton.

2

Parent mesh to armature

Select mesh → then armature (Shift+click) → Ctrl P → With Automatic Weights.

3

Weight Paint

Switch to Weight Paint mode to control how strongly each bone influences each vertex. Blue = no influence, Red = full influence.

4

Pose Mode

Switch armature to Pose Mode (Ctrl Tab) to rotate bones and test deformation.

6. Keyframe Animation

Animation in Blender works by recording the value of a property at specific frames. Blender interpolates between keyframes automatically.

ActionShortcut
Insert keyframeI in viewport
Delete keyframeAlt I
Play / PauseSpace
Go to frameType frame number in timeline
Next / Prev keyframe /
Copy poseCtrl C in Pose Mode
Paste flipped poseCtrl Shift V

Graph Editor

Open the Graph Editor to adjust interpolation curves. Select keyframes and press T to change easing (Bezier, Linear, Constant). Smooth Bezier curves give natural motion.

7. Lighting

Good lighting transforms a scene. Blender offers four main light types and HDRI world lighting.

☀ Sun

Parallel directional light — simulates sunlight. Rotation controls direction, not position.

💡 Point

Radiates light in all directions from a single point — like a light bulb.

🔦 Spot

Cone-shaped directional light — for focused beams and stage lighting effects.

⬛ Area

Rectangular soft light — closest to real studio lights. Best for product shots and portraits.

Three-Point Lighting

The classic setup: Key light (main, bright) + Fill light (soft, opposite side, dim) + Rim/Back light (behind subject to separate from background). Works for characters, products, and objects.

8. Rendering & Export

Rendering converts your 3D scene into a flat image or video. Blender has two main render engines with different strengths.

EEVEE (Real-time)

Fast, GPU-based. Renders in seconds. Good for game assets, motion graphics, and when iteration speed matters. Fewer accurate reflections than Cycles.

Cycles (Path Tracing)

Physically accurate. Slower but photorealistic. Best for final renders, films, and product visualisations. Supports GPU acceleration.

ActionHow
Render still imageF12
Render animationCtrl F12
Set output formatProperties → Output → File Format
Set output pathProperties → Output → Output directory
Save renderF3 in Image Editor

Export for Game Engines

When exporting to Unity or Unreal, use FBX format and apply all modifiers before export. Set Forward = -Z and Up = Y to match most game engine coordinate systems.