| 144 | } |
| 145 | |
| 146 | void DirectionalLight::Store(Json::Value& node) const |
| 147 | { |
| 148 | node["type"] << "DirectionalLight"; |
| 149 | node["color"] << color; |
| 150 | node["irradiance"] << irradiance; |
| 151 | node["angularSize"] << angularSize; |
| 152 | } |
| 153 | |
| 154 | bool DirectionalLight::SetProperty(const std::string& name, const dm::float4& value) |
| 155 | { |
nothing calls this directly
no outgoing calls
no test coverage detected