Limit low res root geometry to 15 points
Because otherwise you would still get 3D issues on large rockets
This commit is contained in:
parent
db16ebc994
commit
58c2809ee4
@ -33,7 +33,7 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona
|
|||||||
* Maximum number of root points in the root geometry.
|
* Maximum number of root points in the root geometry.
|
||||||
*/
|
*/
|
||||||
private static final int MAX_ROOT_DIVISIONS = 100;
|
private static final int MAX_ROOT_DIVISIONS = 100;
|
||||||
private static final int MAX_ROOT_DIVISIONS_LOW_RES = 20;
|
private static final int MAX_ROOT_DIVISIONS_LOW_RES = 15;
|
||||||
|
|
||||||
public void setOverrideMass() {
|
public void setOverrideMass() {
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user