| 159 | } |
| 160 | |
| 161 | void PerspectiveCamera::Load(const Json::Value& node) |
| 162 | { |
| 163 | node["verticalFov"] >> verticalFov; |
| 164 | node["aspectRatio"] >> aspectRatio; |
| 165 | node["zNear"] >> zNear; |
| 166 | node["zFar"] >> zFar; |
| 167 | } |
| 168 | |
| 169 | bool PerspectiveCamera::SetProperty(const std::string& name, const dm::float4& value) |
| 170 | { |
nothing calls this directly
no outgoing calls
no test coverage detected