Rastko Tojagic
Rastko Tojagic
```csharp _gameWorld = new Console(Game.Instance.ScreenCellsX, SadConsole.Game.Instance.ScreenCellsY); _gameWorld.FillWithRandomGarbage(5); ControlsConsole cConsole = new ControlsConsole(40, 40); _gameView = new SurfaceViewer(20, 20, _gameWorld); cConsole.Controls.Add(_gameView); container.Children.Add(cConsole); // !!! Observe these lines !!!! _gameView.Update(new TimeSpan(0)); //...
Hey, We already discussed this in the previous post but it remained unresolved. I wonder if you could help. I am getting a nullptr exception here when trying to load...
I tried implementing a custom logger: ```csharp public class ServerLogger : Swan.Logging.ILogger { public Swan.Logging.LogLevel LogLevel => Swan.Logging.LogLevel.Info | Swan.Logging.LogLevel.Error | Swan.Logging.LogLevel.Trace | Swan.Logging.LogLevel.Debug | Swan.Logging.LogLevel.Warning; public void Dispose() {...
Hey! I would like to use Sharpmake as a main build system for my project that relies on external code (Ogre3D to be precise) that is built using CMake. Is...
Hey, We already discussed this in the previous post but it remained unresolved. I wonder if you could help. I am getting a nullptr exception here when trying to load...
This is a really neat plugin that helps a lot when writing tests. I recently switched from VSCode to Emacs (Doom) so it would be great to have this plugin...
### Summary I am using a StaticDatePIcker in a custom dropdown menu which needs to be closed after the day has been selected. I am using `onChange` to detect that...
### Is your feature request related to a problem? Please describe. I am not sure whether there's just documentation missing or this isn't possible yet, but I was unable to...
Added `ColorPickerBubbleMenu` component based on the `LinkBubbleMenu` in order to enable passing a container reference so that the color picker can be displayed in a modal or any kind of...
### Describe the bug When using `` and `` color pickers in the TipTap placed in a modal, color pickers are rendered in a layer below the modal. ### To...