Roman Shapiro
Roman Shapiro
Since - unlike Label - it supports selecting text
## MML Enhancement Implement special syntax in MML, indicating that property contains localized value. Like ```xml ``` ## Localization Files Specify XML localization files. Their content will be like: ```xml...
 Code for filling up the drives ListBox is like this: ```c# var drives = DriveInfo.GetDrives(); foreach (var d in drives) { if (d.DriveType == DriveType.Ram) { continue; } try...
See attached sample. It draws "Search" twice: first time with y=97.5f(left on the image), second with y=97(right). There seems to be an artefact in the first call - letters 'r'...
Right now, most of the Tiled classes constructors are internal, most of properties are read-only. It seems that TiledMap is supposed to be created only by ContentManager. I think it...
Hello, I've ported that awesome library to C#: https://github.com/rds1983/NvgSharp I would be grateful if above link would be added to the Ports section of the README.md.
Hello, Are there plans to publish this wholesome engine at nuget.org?