Improved UI

This commit is contained in:
Devine Lu Linvega
2018-05-09 09:33:17 +12:00
parent 7540fb4f8a
commit 389111d6ca
4 changed files with 41 additions and 41 deletions

View File

@@ -170,6 +170,11 @@ function Tool()
return false;
}
}
if(type == "bezier"){
if(this.verteces.length % 2 == 0){
return false;
}
}
return this.verteces.length >= this.reqs[type];
}