| 135 | } |
| 136 | |
| 137 | void DecalObject::GetDesc(EntityDescription& desc) const { |
| 138 | Object::GetDesc(desc); |
| 139 | desc.AddString(EDF_FILE_PATH, obj_file); |
| 140 | color_tint_component_.AddToDescription(desc); |
| 141 | } |
| 142 | |
| 143 | bool DecalObject::SetFromDesc(const EntityDescription& desc) { |
| 144 | bool ret = Object::SetFromDesc(desc); |
nothing calls this directly
no test coverage detected