| 544 | } |
| 545 | |
| 546 | template <> std::string VariableImpl<bool>::GetValueAsString() const { return m_Data ? "true" : "false"; } |
| 547 | template <> std::string VariableImpl<int2>::GetValueAsString() const { return vector_to_string(m_Data); } |
| 548 | template <> std::string VariableImpl<int3>::GetValueAsString() const { return vector_to_string(m_Data); } |
| 549 | template <> std::string VariableImpl<float>::GetValueAsString() const { return float_to_string(m_Data); } |