ViRuZGamiing Posted January 7, 2016 Share Posted January 7, 2016 Hello guys, Can anyone explain me setWindVelocity how it affects the game compaired to reallife data. Is there such things a wind direction and windspeed? Kind regards, Billy Link to comment
myonlake Posted January 7, 2016 Share Posted January 7, 2016 Test it. Explaining it is a bit difficult since you probably have no idea what velocity really does to a element. Simple examples without much effort for the velocity intensity part: -- Wind towards north setWindVelocity( 0, 1, 0 ) -- Wind towards south setWindVelocity( 0, -1, 0 ) -- Wind towards west setWindVelocity( -1, 0, 0 ) -- Wind towards east setWindVelocity( 1, 0, 0 ) -- Wind towards north-west setWindVelocity( -1, 1, 0 ) -- Wind towards north-east setWindVelocity( 1, 1, 0 ) -- Wind towards south-west setWindVelocity( -1, -1, 0 ) -- Wind towards south-east setWindVelocity( 1, -1, 0 ) Link to comment
ViRuZGamiing Posted January 7, 2016 Author Share Posted January 7, 2016 Well I was about to test it but I didn't actually know how I'd see any difference thx tho this really helped me. And as far as Velocity goes I see it as some sort of Speed. Link to comment
Revolt Posted January 7, 2016 Share Posted January 7, 2016 Well I was about to test it but I didn't actually know how I'd see any difference thx tho this really helped me.And as far as Velocity goes I see it as some sort of Speed. Velocity is speed with a direction (a vector). Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now