Setting effects variables in XNA
- by Badescu Alexandru
Hello ! I am currently reading a book named "3D Graphics with XNA Game Studio 4.0" by Sean James and have some questions to ask :
If i create a effect parameter named lets say SpecularPower and have in my effect a variable named SpecularPower , if i do something like
effect.Parameters["SpecularPower"].SetValue(3)
That wil change the SpecularPower variable in my effect ?
And a second question, not regarding the book :
If i have a spaceship and i've created a "boost" functionality that speeds up my spaceship, what effects should i implement to create the impresion oh high speed ? I was thinking of making everything except my spaceship blurry but i think there would be something missing . Any ideas ?
Regards,
Alex Badescu