Changeset 1039 for cpp/frams/genetics/f1


Ignore:
Timestamp:
11/30/20 03:44:14 (3 years ago)
Author:
Maciej Komosinski
Message:

Removed Part's "visual thickness" property

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/genetics/f1/f1_conv.cpp

    r830 r1039  
    282282int Builder::growPart(GeneProps &c, const char *g)
    283283{
    284         sprintf(tmp, "dn=%lg,fr=%lg,ing=%lg,as=%lg,vs=%g,vr=%g,vg=%g,vb=%g",
    285                 1.0 / c.weight, c.friction, c.ingestion, c.assimilation, c.visual_size, c.cred, c.cgreen, c.cblue);
     284        sprintf(tmp, "dn=%lg,fr=%lg,ing=%lg,as=%lg,vr=%g,vg=%g,vb=%g",
     285                1.0 / c.weight, c.friction, c.ingestion, c.assimilation, c.cred, c.cgreen, c.cblue);
    286286        return model.addFromString(Model::PartType, tmp, makeRange(g));
    287287}
Note: See TracChangeset for help on using the changeset viewer.