> For the complete documentation index, see [llms.txt](https://themattempire.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://themattempire.gitbook.io/documentation/asset-creation/the-crate-series/blender-basics/edit-elements.md).

# Edit Elements

All 3D models are made up of different elements such as Vertices, Edges, and polygons.

<figure><img src="/files/d0bHd0wjW5Y8bAgkd8U9" alt=""><figcaption><p>Vertices, Edges, and Triangles/Polygons...</p></figcaption></figure>

* Vertex / Vertices (Red) - the 'points' of a 3D object.
* Edge/Edges (Blue) - the lines that joins two vertices of a 3D object.
* Polygon/Polygons (Purple) - the faces that are created when three Edges are connected.&#x20;
  * This is usually called a *triangle*, or commonly referred to as a *Tri*.&#x20;
  * A *Polygon* or *Poly* is usually considered a four-sided face, or two triangles sharing a common edge. These are recommended for game assets.
  * An NGon is a polygon made up of three or more triangles.

Creating assets is basically editing these elements to make them look how you want.

<figure><img src="/files/8PsjTrk7pJQQRJxvMWiG" alt=""><figcaption><p>Edit Mode and Select Mode...</p></figcaption></figure>

* Select the Cube.
* Go to 'Edit Mode' using the Pulldown at the Top Left, or press \[Tab].&#x20;
  * Press \[Tab] again if you want to go back to 'Object Mode'.

{% hint style="warning" %}
Switching between 'Edit Mode' and 'Object Mode' is one of the biggest differences between Blender and other 3D Creation tools such as 3DStudio MAX and Maya. It takes a little bit of getting used to, but in the end comes with its own benefits.
{% endhint %}

* Select what elements you want to edit.
  * Edit mode will display the selected asset in various Select Modes such as Vertex, Edge, and Polygon Mode. The hotkey is listed below:
    * Vertex \[1] - Select Vertices.
    * Edge \[2] - Select Edges.
    * Polygon \[3] - Select Polygons.
* Position, Rotate, or Scale selected assets in the same way as the cube using:&#x20;
  * Position \[G]
  * Rotation \[R]
  * Scale \[S]
  * X Axis \[X]
  * Y Axis \[Y]
  * Z Axis \[Z]

### Select Multiple Elements

* Drag the mouse to cover the assets you would like, or
* Hold \[Shift] while left clicking multiple elements.

### X-Ray Mode

<figure><img src="/files/mfU6e0yxOccGYAvSllss" alt=""><figcaption><p>Toggle X-Ray mode to slelect through assets...</p></figcaption></figure>

* Select elements *through* the model by toggling the 'X-Ray' button at the top right of the Viewport or use \[Alt+Z]. You cannot select elements on the opposite side of an asset if this mode is not one.
  * Selecting Polygons is done at the point in the *middle* of the polygon in X-Ray Mode.&#x20;
  * If you are using Nvidia Capture tools, you may need to change this hotkey in Blender or in the Nvidia capture settings.

### Duplicating Elements

<figure><img src="/files/yp3NThfNyoYuj9Eq1yh6" alt=""><figcaption><p>Duplicate Elements with [Shift + D]...</p></figcaption></figure>

* Select the element, such as a polygon, and press \[Shift + D].&#x20;
* Move the mouse to reposition the duplicate to the viewport, or align the duplicate using the \[X], \[Y], \[Z] keys.&#x20;
* Left click to place the duplicate or right click to reset to the original position.
* Note that you will very rarely need to duplicate an edge or a vertex, you will most likely use Extrude tool for that which we will cover in the next tutorial.

### Deleting Elements

<figure><img src="/files/QcDot4OgBmMomUN6vvaT" alt=""><figcaption><p>Delete Elements with the [Delete] key...</p></figcaption></figure>

* Select the elements you would like to delete.
* Select \[Delete].
* Select the element you would like to delete.
  * The top five will delete the elements *and* connected elements.
  * The 'Dissolve' options will delete the selected elements, but keep the other elements when possible. This will be made more clear in later tutorials.
  * 'Limited Dissolve' will try to remove all the elements Blender thinks the asset doesn't need such as edges on flat planes.
  * Roll over the other options for more information.

## Summary

In this tutorial you looked at the basics of editing the Vertex, Edge, and Polygon elements in an asset.

* \[Tab] - Switch between Object and Edit Mode.<br>
* \[1] - Vertex Select Mode.
* \[2] - Edge Select Mode.
* \[3] - Polygon Select Mode.<br>
* \[Alt + Z] - Toggle X-Ray Mode.

With the ability to edit elements of an asset you can certainly start modifying the box, but we need to look at tools that can add more elemnts to the box to edit! For that we need the 5 most common tools in Blender : Extrude, Inset, Bevel, Loop Cut, and Knife.&#x20;


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://themattempire.gitbook.io/documentation/asset-creation/the-crate-series/blender-basics/edit-elements.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
