Mikael Hermansson

Results 53 issues of Mikael Hermansson

Due to JavaScript/TypeScript not really having a notion of an integer (outside of the recently added `BigInt`) it becomes a problem when you have functions like `UKismetMathLibrary::Clamp`, which only clamps...

enhancement

Typings only ever get added to `Intermediate/Typings` and never removed, leaving behind typings that could potentially cause problems.

enhancement

Right now you have to jump through a lot of hoops in order to setup a new project. Any reduction in the number of steps would be a good thing....

enhancement

Right now it's hardcoded in `FTsuReplProcess` to 5 seconds for both the `stdout` and `stderr` pipe.

enhancement

When debugging using VS Code you sometimes get errors saying: ``` Error evaluating `process.pid`: Cannot find context with specified id ``` It might have something to do with missing or...

bug

Module-scope exceptions can potentially result in some/all functions not being exported, which will make `FTsuContext::Invoke` abort early and cause `Stack.Code` to never move, resulting in `UObject::ProcessInternal` getting stuck on `while...

bug

If you connect a second debugger you'll overwrite the session of the first one. Should (hopefully) be as simple as just storing a list of channels/clients instead.

bug

Ideally these should be turned into parameters for the constructor in each respective class.

bug

As mentioned in #1, we need to somehow get [source-map-support](https://github.com/evanw/node-source-map-support) into the bootstrapping to be able to read the correct file/line from the inlined source maps.

bug

These seem to be handled in blueprint through `UK2Node_AddComponent`. The current workaround would be something similar to how it is in C++: ```ts export function construct(target: BP_Foo, mesh: StaticMesh) {...

enhancement