| 192 | } |
| 193 | |
| 194 | void StandardMaterial::setEmissiveFactor(float factor) |
| 195 | { |
| 196 | if (mData.emissiveFactor != factor) |
| 197 | { |
| 198 | mData.emissiveFactor = factor; |
| 199 | markUpdates(UpdateFlags::DataChanged | UpdateFlags::EmissiveChanged); |
| 200 | updateEmissiveFlag(); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | void StandardMaterial::setHasEntryPointVolumeProperties(bool hasEntryPointVolumeProperties) |
| 205 | { |
no outgoing calls
no test coverage detected