Fr/Adding Water: Difference between revisions
< Fr
Jump to navigation
Jump to search
Anarkia777 (talk | contribs) No edit summary |
Anarkia777 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
== Règles == | |||
Pour créer de l'eau efficacement vous devez respecter plusieurs règles qui dépendent de son placement et de son usage : | |||
* Il doit y avoir seulement un niveau d'eau (senblable au niveau de la mer) dans le même [[PVS:fr|PVS]] si l'eau est expensive. | |||
* L'eau "Expensive" et "cheap" ne peuvent pas être utilisé simulanément dans le même [[PVS:fr|PVS]]. | |||
* la surface de l'eau doit être parrallèle à l'horizon et non vertical (Axe-Z). | |||
* | * L'eau est créer en appliquant un matériaux water à la surface d'un Brush, les autres faces doivent être recouverte de la texture <code>tools\toolsnodraw</code>. | ||
* "Expensive" | * L'entitée [[water_lod_control]] controle la transtion entre l'eau expensive/cheap. | ||
* | * L'entitée [[env_cubemap:fr|env_cubemap]] doit être présente à la surface de l'eau pour générer des reflections sur les sytèmes inférieurs à DX-9. | ||
* | |||
* | |||
* | |||
{{note|Water is ''not'' a brush entity, and should not be attached to an entity. Water brushes included in any brush entity will not render correctly.}} | {{note|Water is ''not'' a brush entity, and should not be attached to an entity. Water brushes included in any brush entity will not render correctly.}} |
Revision as of 03:11, 22 November 2008
Règles
Pour créer de l'eau efficacement vous devez respecter plusieurs règles qui dépendent de son placement et de son usage :
- Il doit y avoir seulement un niveau d'eau (senblable au niveau de la mer) dans le même PVS si l'eau est expensive.
- L'eau "Expensive" et "cheap" ne peuvent pas être utilisé simulanément dans le même PVS.
- la surface de l'eau doit être parrallèle à l'horizon et non vertical (Axe-Z).
- L'eau est créer en appliquant un matériaux water à la surface d'un Brush, les autres faces doivent être recouverte de la texture
tools\toolsnodraw
. - L'entitée water_lod_control controle la transtion entre l'eau expensive/cheap.
- L'entitée env_cubemap doit être présente à la surface de l'eau pour générer des reflections sur les sytèmes inférieurs à DX-9.

Construction
To add a water volume to your level, follow these steps:
- Create a brush the size of the water volume using the Block Tool.
- Open the Texture Browser by clicking the Browse button on the Texture Bar.
- Double-click the
tools\toolsnodraw
material in the Texture Browser. - With your water brush selected, click the Apply Current Texture button to assign the
tool textures|tools\toolsnodraw
material to the whole brush. - Select the Texture Application tool, which opens the Face Edit mode.
- Left-Click the top face of the water brush in the 3D view to select it.
- Click Browse to bring up the Texture Browser again.
- Type
water
into the filter field. This will show you all materials with the keywordwater
in their name. - Select a water material to apply by double-clicking it. One water material to try is
nature/water_canals_water2
. - Click the Apply button on the Face Edit panel.
- The brush should have water correctly applied. Compile and run your map (with VVis and VRad enabled) to test it.

Cubemaps and water
Cubemaps are important to use with water surfaces. On lower than DX9 level video cards, it is not possible to render the real-time reflective water shader. For these cards, an env_cubemap entity provides the pre-calculated environment map use to render water on sub-DX9 cards.
Adding a env_cubemap to water surfaces:
- Add an env_cubemap entity using the Entity Tool.
- Place the env_cubemap above the top surface of the water, near the center.
- Double-click the env_cubemap in the 3D view to bring up the Object Properties dialog.
- Click on the Brush faces key in the Object Properties.
- Click the Pick... button. The mouse cursor will change to the eye dropper icon.
- Click the top water face to select it with the eyedropper. The face will highlight in red, to show it has been associated with the env_cubemap entity.
- Close the Object properties dialog.
- Compile and run your map. After the map is loaded, open the developers console and type
buildcubemaps
. The engine will calculate an environment map for each env_cubemap entity, and save the data into the BSP file.
Creating water materials
See Material Creation for general information on creating your own materials, and see Water Shader for specific information on how to create water materials.