in radient can i select a brush and get this info -
coords and setsize
i see the coords on the bottom middle are those the brushes origin?
radient
Moderator: Moderators
edit
Under Edit > Preferences put a checkmark in "Paint Sizing Info". That will show you the size of any seleted brush, right in the 2D screen. But, you have to remember that setsize is distance from the origin point of the brush to all six sides. That is why there are 6 numbers in a setsize ( x y z ) ( x y z ).
$mytrigger setsize ( 10 20 30 ) ( -10 -20 -30 )
The above brush will be 20 units deep (x), 40 units wide (y), and 60 units high (z), and the origin will be in the center. If you wanted the origin to be centered at the bottom of the brush, it would look like this.
$mytrigger setsize ( 10 20 60 ) ( -10 -20 0 )
Those coordinates at the bottom can be used, but you have to switch between 2D views to see all the numbers. It show where your pointer is.
$mytrigger setsize ( 10 20 30 ) ( -10 -20 -30 )
The above brush will be 20 units deep (x), 40 units wide (y), and 60 units high (z), and the origin will be in the center. If you wanted the origin to be centered at the bottom of the brush, it would look like this.
$mytrigger setsize ( 10 20 60 ) ( -10 -20 0 )
Those coordinates at the bottom can be used, but you have to switch between 2D views to see all the numbers. It show where your pointer is.

