Jump to content

setWindVelocity


Recommended Posts

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...