2
$\begingroup$

In one video I saw that one person has his vertex much bigger than usual, how can I do the same?

In video:

vertex in the video

Me:

I have the Vertex

$\endgroup$
1
  • 1
    $\begingroup$ I converted your answer into a comment, as neither that or @curious_1's provide a receivable answer to the question: a good answer on BSE should be self-sufficient and not require going to an external resource. Both of you are welcome to post an elaborated answer with proper instructions, screenshots and whatever you deem to help to make it a comprehensible answer. $\endgroup$
    – Lauloque
    Commented Jul 9 at 23:12

2 Answers 2

4
$\begingroup$

To change the Vertex Size in 3D viewport:

Open Edit > Preferences > Themes and open the 3D Viewport dropdown:

prefs themes

In that dropdown scroll down below the color settings to Vertex Size:

vertex size

Adjust the size to your preference:

changed vert size

$\endgroup$
1
$\begingroup$

If you are interested in doing it via Python you can set the value of vertex_size to your desired size:

import bpy

theme = bpy.context.preferences.themes[0]
view3d_theme = theme.view_3d

view3d_theme.vertex_size = 5 # default=3
$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .