Skip to content

Commit

Permalink
gui info
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonks2 authored Dec 20, 2021
1 parent 8d29c64 commit b3bf661
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Assets/Editor/ParDatasetImporterEditorWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ private void ImportDataset()

private void OnGUI()
{
ParDatasetImporter pd = new ParDatasetImporter(filePath, nx, ny, nz);
ParDatasetImporter pd = new ParDatasetImporter(filePath, nx, ny, nz);
GUILayout.Label("To be implemented");
nx = EditorGUILayout.IntField("nx dimension grid values", nx);
ny = EditorGUILayout.IntField("ny dimension grid values", ny);
nz = EditorGUILayout.IntField("nz dimension grid values", nz);
Expand Down

0 comments on commit b3bf661

Please sign in to comment.