You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Create sub menu from category propery if is not emptyvarsubMenu=string.IsNullOrWhiteSpace(gameResource.Category)?menu:menu.FindOrCreateMenu(gameResource.Category);subMenu.AddOption($"New {gameResource.Name}..",gameResource.Icon,()=>{varfd=newFileDialog(null);fd.Title=$"Create {gameResource.Name}";fd.Directory=folder.FullName;fd.DefaultSuffix=$".{gameResource.Extension}";fd.SelectFile($"untitled.{gameResource.Extension}");fd.SetFindFile();fd.SetModeSave();fd.SetNameFilter($"{gameResource.Name} (*.{gameResource.Extension})");if(!fd.Execute())return;CreateNew(fd.SelectedFile);});
Add a way to add few game resource in the same category
[GameResource(Category = "MyCategory", ...)]
does not workingThe text was updated successfully, but these errors were encountered: