Dylan Dumesnil
Dylan Dumesnil
Example function from KismetTextLibrary: ```cpp UFUNCTION(BlueprintPure, meta=(DisplayName = "To Text (Integer)", AdvancedDisplay = "1", BlueprintAutocast), Category="Utilities|Text") static FText Conv_IntToText(int32 Value, bool bAlwaysSign = false, bool bUseGrouping = true, int32 MinimumIntegralDigits...
Console should parse strings surrounding with quotes as a single string, and allow escaping. Example: Currently this function can only accept a single word as a message ```cs [MDCommand] void...
We have a GitHub action that builds the dll already, it would be beneficial to add a job that can run 3 instances of the example project, 1 server and...
With PR #60 the wiki is now outdated and needs to be updated to inform users on how to configure settings https://github.com/DoubleDeez/MDFramework/wiki/Game-Instance
A test .csproj should be created so that a GitHub Action can run `dotnet test` to validate changes to the framework. The test files should be namespaced to not interfere...
The framework makes many assumptions about there being only 1 local player. Where these assumptions are made need to be identified and then resolved to support multiple local players.
We should add an option to MDProfiler to write profiler results to a csv file for ingestion to other software. To not interfere with profiling, file writing should be done...
There are quite a few features in the framework that do a lot of memory allocations, looping, and other processing. It would be a good idea to get metrics on...
Dependent on #27 The action should also fail if comments are missing, this will help ensure all new code is commented. Docs can be a subdirectory of the framework and/or...