Skip to content

Commit

Permalink
tooltips corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Nov 23, 2024
1 parent fe6d440 commit fbc1a91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions source/Gui/HelpStrings.h
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,10 @@ namespace Const
"This value loosely identifies a specific creature. While not guaranteed, it is very likely that two creatures will have different creature ids.";

std::string const CellMutationIdTooltip =
"The mutation id is a value to distinguish mutants. After most mutations (except neural network and cell properties) the mutation id changes.";

"The mutation id is a value to distinguish mutants. After most mutations (except neural network and cell properties) the mutation id changes. A few "
"values have a special meaning:\n\n" ICON_FA_CHEVRON_RIGHT " 0: This value is used for handcrafted cells. This refers to cells that have been "
"artificially created by the user.\n\n" ICON_FA_CHEVRON_RIGHT " 1: This value is used for free cells. Free cells are cells that have not been created by a "
"self-replication process, but by transformation from an energy particle.";
std::string const GenomeComplexityTooltip =
"This value denotes the complexity of the creature's genome. The calculation can be customized in the simulation parameters under the 'Genome "
"complexity measurement' addon. By default, it is the number of encoded cells in the genome.";
Expand Down
2 changes: 1 addition & 1 deletion source/Gui/SimulationParametersWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ void SimulationParametersWindow::processBase()
.name("Inflow only for non-replicators")
.textWidth(RightColumnWidth)
.defaultValue(origParameters.externalEnergyInflowOnlyForNonSelfReplicators)
.tooltip("If activated, activated, external energy can only be transferred to constructor cells that are not self-replicators. "
.tooltip("If activated, external energy can only be transferred to constructor cells that are not self-replicators. "
"This option can be used to foster the evolution of additional body parts."),
parameters.externalEnergyInflowOnlyForNonSelfReplicators);
AlienImGui::SliderFloat(
Expand Down

0 comments on commit fbc1a91

Please sign in to comment.