| 602 | } |
| 603 | |
| 604 | static void lua_save_data_write_vector3(StringStream &sjson, const char *type, const Vector3 &v) |
| 605 | { |
| 606 | sjson << "{ type = \"" << type << "\" data = [ "; |
| 607 | sjson << v.x << " " << v.y << " " << v.z; |
| 608 | sjson << " ] }"; |
| 609 | } |
| 610 | |
| 611 | static void lua_save_data_write_matrix4x4(StringStream &sjson, const char *type, const Matrix4x4 &m) |
| 612 | { |
no outgoing calls
no test coverage detected