Skip to content

Commit

Permalink
Update GameHost initial values for last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ME-MarvinE committed Feb 10, 2023
1 parent 8b77219 commit 35ee7d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MaceEvolve.Core/Models/GameHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ namespace MaceEvolve.Core.Models
public int MaxCreatureConnections { get; set; } = 128;
public float CreatureSpeed { get; set; }
public int MaxCreatureProcessNodes { get; set; } = 4;
public float MutationChance { get; set; } = 0.25f;
public float MutationChance { get; set; } = 0.05f;
public int MutationAttempts { get; set; } = 2;
public float ConnectionWeightBound { get; set; } = 4;
public float MaxCreatureEnergy { get; set; } = 150;
public float FoodSize { get; set; } = 7;
public float CreatureSize { get; set; } = 10;
public float MinimumSuccessfulCreatureFitness { get; set; } = 0.9f;
public float MinimumSuccessfulCreatureFitness { get; set; } = 0.5f;
public float ReproductionNodeBiasVariance { get; set; } = 0.05f;
public float ReproductionConnectionWeightVariance { get; set; } = 0.05f;
public ReadOnlyCollection<CreatureInput> PossibleCreatureInputs { get; } = Globals.AllCreatureInputs;
Expand Down

0 comments on commit 35ee7d8

Please sign in to comment.