Moves
Understanding exactly how tiles move is crucial for planning your strategy in 2048.
Movement Mechanics
When you make a move:
- The game processes all tiles simultaneously
- Each tile calculates its destination
- Merges happen during movement
- All animations play
- A new tile spawns
Order of Operations
For a leftward move, the game processes tiles from left to right, row by row:
- Check the leftmost position for each tile
- If blocked by same-value tile, merge
- If blocked by different tile, stop one position away
- If path is clear, slide to the edge
Tip
The direction of processing matters! Tiles closer to the target edge are processed first, which affects merge priorities.
Movement Examples
Simple Slide
Before (moving left):
| empty | empty | 2 | empty |
After:
| 2 | empty | empty | empty |
Simple Merge
Before (moving left):
| 2 | 2 | empty | empty |
After:
| 4 | empty | empty | empty |
Multiple Merges
Before (moving left):
| 2 | 2 | 4 | 4 |
After:
| 4 | 8 | empty | empty |
Both pairs merge independently.
Three of a Kind
Before (moving left):
| 2 | 2 | 2 | empty |
After:
| 4 | 2 | empty | empty |
Only the leftmost pair merges because tiles can only merge once per move.
Four of a Kind
Before (moving left):
| 2 | 2 | 2 | 2 |
After:
| 4 | 4 | empty | empty |
Two merges happen: positions 1-2 and positions 3-4.
Blocked Tiles
A tile stops moving when it hits:
- The board edge — No further movement possible
- A different-value tile — Can't merge, stops adjacent
- A same-value tile that already merged — Tiles only merge once per move
The "Once Per Move" Rule
This is critical for advanced play:
- A merged tile cannot merge again in the same move
- This prevents chain reactions within a single move
- Use this to your advantage when planning
Example: Moving left with 4 | 2 | 2 | empty
- The 4 slides to the left edge
- The two 2s merge into a 4
- The new 4 stops next to the original 4 — it cannot merge again
Result: 4 | 4 | empty | empty
Valid vs Invalid Moves
A move is valid only if something changes:
Valid moves:
- At least one tile slides
- At least one merge occurs
Invalid moves (nothing happens):
- All tiles already at target edge
- No tiles can merge or slide
Invalid moves don't spawn new tiles.
Directional Strategy
Each direction has strategic implications:
| Direction | Use When |
|---|---|
| Toward corner | Keeping highest tile in place |
| Along edge | Building ordered chains |
| Away from corner | Emergency only! |
| Perpendicular | Positioning for merges |
Warning
Every move spawns a new tile. Make sure each move accomplishes something worthwhile!
Next Steps
- Corner Strategy — Apply movement knowledge strategically
- Snake Pattern — Advanced tile arrangement
- When Stuck — Recovery techniques