Saves the project file.
()
| 220 | /// Saves the project file. |
| 221 | /// </summary> |
| 222 | public void Save() |
| 223 | { |
| 224 | var contents = FlaxEngine.Json.JsonSerializer.Serialize(this); |
| 225 | File.WriteAllText(ProjectPath, contents); |
| 226 | } |
| 227 | |
| 228 | /// <summary> |
| 229 | /// Loads the project from the specified file. |
no test coverage detected