brush.cc: temporary hotfix, disable bounding box tweak when rotate_offset
is set. Breaks usage of origin brush with func_train
This commit is contained in:
parent
b04c06a616
commit
ac3553cb50
|
|
@ -468,7 +468,7 @@ CreateBrushFaces(hullbrush_t *hullbrush, const vec3_t rotate_offset,
|
||||||
|
|
||||||
// Rotatable objects must have a bounding box big enough to
|
// Rotatable objects must have a bounding box big enough to
|
||||||
// account for all its rotations
|
// account for all its rotations
|
||||||
if (rotate_offset[0] || rotate_offset[1] || rotate_offset[2]) {
|
if (0 /*rotate_offset[0] || rotate_offset[1] || rotate_offset[2]*/) {
|
||||||
vec_t delta;
|
vec_t delta;
|
||||||
|
|
||||||
delta = fabs(max);
|
delta = fabs(max);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue