| 312 | } |
| 313 | |
| 314 | std::optional<float> Tr2Controller::GetFloatVariableByName( const char* name ) const |
| 315 | { |
| 316 | auto var = GetVariableByName( name ); |
| 317 | if( var ) |
| 318 | { |
| 319 | return var->GetValue(); |
| 320 | } |
| 321 | return std::nullopt; |
| 322 | } |
| 323 | |
| 324 | void Tr2Controller::GetExpressionTermInfo( std::vector<Tr2ExpressionTermInfoPtr>& out ) const |
| 325 | { |
no test coverage detected