Wave editor clipboard save+load / Bugfixes / Balancing

This commit is contained in:
Anuken
2019-03-19 19:25:48 -04:00
parent e2ea7f9b87
commit ce5218db58
9 changed files with 72 additions and 23 deletions

View File

@@ -30,7 +30,7 @@ public class Stats{
//each new launch period adds onto the rank 'points'
if(wavesLasted >= zone.conditionWave){
score += (float)((wavesLasted - zone.conditionWave) / zone.launchPeriod + 1) * 1.3f;
score += (float)((wavesLasted - zone.conditionWave) / zone.launchPeriod + 1) * 1.2f;
}
int capacity = zone.loadout.core().itemCapacity;
@@ -42,7 +42,7 @@ public class Stats{
frac += Mathf.clamp((float)itemsDelivered.get(item, 0) / capacity) / (float)obtainable.size;
}
score += frac*2.0f;
score += frac*1.6f;
if(!launched){
score *= 0.5f;