water without dying

Questions and answers about the how and why of making maps.
Post Reply
mdskpr
Private First Class
Private First Class
Posts: 95
Joined: Sat Jan 28, 2006 4:17 pm

water without dying

Post by mdskpr »

How do you make water above ground without having it kill you like on waterLevel??
User avatar
Winny
Grouchy
Grouchy
Posts: 2381
Joined: Wed Aug 24, 2005 12:27 am
Location: Ottawa eh?
Contact:

Post by Winny »

You'll need to add a meshbox, mesh, or some other sort of object and apply a water-like material to it.

Code: Select all

texturematrix
 name watershift
 shift 1 1
end

material
 name watermat
 texmat watershift
 texture water.png
end

meshbox
 name waterbox
 position 0 0 1
 size 400 400 0.1
 rotation 0
 matref watermat
end
User avatar
tw1sted
Private First Class
Private First Class
Posts: 849
Joined: Tue Feb 21, 2006 10:21 pm

Post by tw1sted »

Post Reply