when I load my models they don't always have the correct size in relation to each other, so i want to scale them. When i multiply the world matrix of the basic-effect that renders the model with a Matrix.CreateScale(0.2f) matrix i get the visual correct result. But the coords are scaled too. So when i want to set the position of my model i need to multiply the x, y and z coords by 5 to get the correct values for the model world matrix.
Does anyone have an idea to only scale the model in visual I already tried to multiply the view and/or projection matrices with a Matrix.CreateScale(0.2f) matrix but I only got crapy results... at least I am not very familiar with matrices

Thx & bye Thunder2002