Moritz

Results 24 issues of Moritz

Closes: #605 Closes: #525 Closes: #456 Closes: #396 - Implemented new mesh backing field logic which registeres each and every change inside the data - Update GPU data once per...

bug
enhancement

Example code ```csharp _scene = new SceneContainer { Children = new List() { new SceneNode { Components = new List { new Transform(), new Cube() } } } }; _sceneRenderer...

bug

Example: ```csharp var cube = new Cube(); cube.Colors[2] = (uint)ColorUint.Red; // no event handler var tmpArr = new uint[] { (uint)ColorUint.Red, (uint)ColorUint.Blue, ... } cube.Colors = tmpArr; // event handler...

enhancement

## Current behavior ```csharp var tr = new Transform(); tr.RotationMatrix = new float4x4(float4.Zero, float4.Zero, float4.Zero, new float4(0, 0, 0, 1)); Console.WriteLine(tr.RotationMatrix.ToString()); ``` Output ```bash (NaN; NaN; NaN; 0) (NaN; NaN;...

bug

Extension of: https://github.com/FUSEEProjectTeam/Fusee/issues/454 First integration, then gizmos.

enhancement

![grafik](https://user-images.githubusercontent.com/4386896/151163112-41e3db64-f52b-44e3-ac4c-1540bb73d943.png)

enhancement
proposal

See #119

enhancement
prio-should

I've added the Fusee.Xene.md file within the source code to the wiki: https://github.com/FUSEEProjectTeam/Fusee/wiki/FUSEE-Xene I think this page needs some changes and updates. After that it should be good to go...

wiki

Currently the `ImGuiInputDriver` is very bare bone and not production ready. Re-iterate and implement with different keyboard layouts (and languages) and input vs. UTF-8 text output in mind. @griestopf it...

bug
enhancement
prio-must