Example #1
0
 void Entity::setProperty(const PropertyKey& key, const Vec3f& value, bool round) {
     StringStream valueStr;
     if (round)
         setProperty(key, value.rounded().asString());
     else
         setProperty(key, value.asString());
 }