Open deccer opened 2 years ago
in all chapters Assets/Main.vs.hlsl
Assets/Main.vs.hlsl
instead of
const matrix modelViewProjection = mul(ProjectionMatrix, mul(ViewMatrix, WorldMatrix));
do
const matrix modelViewProjection = mul(WorldMatrix, mul(ViewMatrix, ProjectionMatrix));
with row_major matrixes instead of matrix
row_major matrix
matrix
in all chapters
Assets/Main.vs.hlsl
instead of
do
with
row_major matrix
es instead ofmatrix