Fusee icon indicating copy to clipboard operation
Fusee copied to clipboard

Fusee aims at becoming a multiplatform 3D realtime engine with a strong emphasis on content transformation and manipulation. Fusee is written mainly in C# and can be programmed in C#. Fusee builds b...

Results 135 Fusee issues
Sort by recently updated
recently updated
newest added

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

- [ ] dotnet-format is now contained in NET6 SDK - [ ] dotnet-format needs a restore to run - [ ] restore needs to have the macos workflow installed...

bug
enhancement
notourdepartment
dependencies

- [x] Extract common functionality from Reader and Writer to a base class - [x] Reduce `string` comparisons - [x] Linearize point access - [x] Improve `FindNode()`

enhancement
prio-must

-> #479

bug
enhancement
notourdepartment

- [ ] Create test data - [ ] Write unit tests depends on #348

test
prio-must

## 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

Fix in `FragShards.cs`: ```glsl vec3 mix = IN.AlbedoMix == 0.0 ? resColor.rgb : mix(resColor.rgb * linearLuminance, texCol.xyz, IN.AlbedoMix); ```

bug
prio-should