Skip to content

Commit

Permalink
Fix typo in migration guide
Browse files Browse the repository at this point in the history
  • Loading branch information
tecnessino authored Oct 24, 2024
1 parent ca8fcc2 commit 59c6be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manual/release-notes/1_9/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Flax Editor is under constant development towards making it the best game editor
## Migration Guide

* Objects drawing has been refectored to use material batching for different meshes (aside from existing hardware instancing), all objects transformations and data is stored in a single large GPU buffer shared by the whole frame. New per-draw constant buffer is used at slot `2` - update your custom material shaders that were using additional constant buffers to use slot `3` instead. Materials and shaders using `WorldMatrix`, `LODDitherFactor`, `PerInstanceRandom` directly from `Data` constant buffer at slot `0` need to use `LoadObject` function to properly read data on a GPU.
* Sort Order has been reduced from `int16` to `in8` due to performance reason (more optimial sort key packing in rendering), this leaves range of `-[127; 127]`for transaprency sort reordering.
* Sort Order has been reduced from `int16` to `int8` due to performance reason (more optimial sort key packing in rendering), this leaves range of `-[127; 127]`for transaprency sort reordering.
* `DEPRECATED` has been changed to be a function that accepts custom deprecation message.

## Changelog
Expand Down

0 comments on commit 59c6be4

Please sign in to comment.